CRUD (Create Read Update Delete) in a Laravel 5 App is a tutorial application (in french there).
In this tutorial, we’re going to build and run a simple CRUD application from scratch using Laravel 5.
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queueing, and caching.
Laravel is accessible, yet powerful, providing powerful tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.
Documentation for the framework can be found on the Laravel website.
French tutorial Laravel 5 - Construire une application CRUD.
git clone https://github.com/erlem/tasks-laravel5.git tasks
cd tasks
composer install
mv .env.example .env
rename .env.examplephp artisan key:generate
- Connect to a MySQL database
mysql -u root -p
- Create a MySQL database
CREATE DATABASE `local.tasks`;
- Exit
exit;
- Inform .env (DB_HOST, DB_DATABASE, DB_USERNAME, DB_PASSWORD=root)
php artisan migrate --seed
to create and populate tableschmod 777 -R storage/
change the folder permissions
- Bootstrap for CSS and jQuery plugins
- Home page
- Lists Tasks
- Create tasks
- Read tasks
- Update tasks
- Delete tasks
- illuminate/html
- barryvdh/laravel-debugbar
The Laravel framework is open-sourced software licensed under the MIT license