التعليقات على How-To-Build-Complete-CRUD-Application-in-Laravel-10 مغلقة
Laravel 10 Complete CRUD Application
- Download the project (or clone using GIT)
- Copy
.env.example
into.env
and configure your database credentials - Go to the project’s root directory using terminal window/command prompt
- Run
composer install
- Set the application key by running
php artisan key:generate --ansi
- Run migrations
php artisan migrate
- Start local server by executing
php artisan serve