composer install
cp .env.example .env
This will duplicate the contents of .env.example
into .env
. Edit .env
with your preferred IDE or text editor and fill in your correct Database credentials.
php artisan key:generate
php artisan migrate
php artisan make:model Profile -m
php artisan passport:install
### Serve
```bash
php artisan serve
URL : http://127.0.0.1:8000