Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 551 Bytes

readme.md

File metadata and controls

34 lines (25 loc) · 551 Bytes

Laravel AJAX Crud

This is a Laravel project which performs simple create/read/update/delete operations using AJAX

How to use ?

Follow these steps to get this project live

git clone https://github.com/tanvirasifkhan/Laravel-Ajax-Crud.git
cd Laravel-Ajax-Crud
composer install

Configure your .env file

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=db_name
DB_USERNAME=db_username
DB_PASSWORD=db_password

Final steps

php artisan migrate
php artisan key:generate
http://localhost:8000

Thanks