A Laravel 8 project that has all essential and basics tools which can help you to make your future projects easily.
In this project, we will build a university platform which has two diffrent users: the Admin user and the Students user, and which of those has his own interfaces. The Admin can add, update, delete students, while students can check out their informations as well as download them as a PDF file and add their own images.
composer global require "laravel/installer"
laravel new project
php artisan serve
composer require laravel/ui
npm install npm run dev
php artisan route:list
php artisan make:controller MyController php artisan make:controller AdminController --resource
php artisan make:model MyModel
php artisan make:model User --migration
php artisan make:model User -m
php artisan make:model User --controller
php artisan make:model User -c
php artisan make:model User --seed
php artisan make:model User -s
php artisan make:model User -mcs
php artisan make:model User --all
php artisan make:seeder AdminUserSeeder
php artisan db:seed --class=AdminUserSeeder
php artisan make:migration MyMigration
php artisan migrate php artisan migrate:rollback php artisan migrate:refresh php artisan migrate:reset php artisan migrate:fresh
php artisan make:middleware MyMiddleware
php artisan storage:link
composer require barryvdh/laravel-dompdf