This application is a simple example of performing basic CRUD operations using Laravel 5.3 and MySql with authentication. This shows a simple management of Books wherein a user can add, edit and delete records of Books.
Documentation for the framework can be found on the Laravel website.
This is the CSS Bootstrap theme applied in this applciation.
Source code of SB Admin Bootstrap can be found Github.
The Laravel framework is open-sourced software licensed under the MIT license.
Copyright 2013-2016 Blackrock Digital LLC. Code released under the MIT license.
git clone https://github.com/hectordolo/laravel-example-crud.git
cd laravel-example-crud
composer install
php artisan key:generate
- copy .env.example to .env
- edit .env
- set
DB_DATABASE="YOUR DATABASE NAME"
- set
DB_USERNAME="YOUR DATABASE USERNAME"
- set
DB_PASSWORD="YOUR DATABASE PASSWORD"
- set
php artisan migrate
php artisan serve
- You can now register a new user to use the application.