A real time chat app built using Laravel 9, Vue 3 and Tailwind CSS.
-
Pull from GIT git pull
-
run composer composer install
-
setup up .env file from env.example
-
run database migration php artisan migrate
-
run database seed for generating dummy data php artisan db:seed
-
run npm install
-
run npm run dev
To setup users you can use tinker.
php artisan tinker
You can copy & paste below code:
$user = new User();
$user->name = 'Dawlat';
$user->email = '[email protected]';
$user->password = bcrypt('12345678');
$user->save();