Laravel Authentication and Authorization Using laravel UI
Clone the repository:
git clone Install PHP dependencies:
composer installInstall NPM denpendencies:
npm installBuild assets:
npm run devSetup configuration:
cp .env.example .envGenerate application Key
php artisan key:generateSetup database
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=Run database migration:
php artisan migrateRun dev server
php artisan serveThe server will run on localhost:8000