Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 745 Bytes

File metadata and controls

13 lines (11 loc) · 745 Bytes

Simple_Laravel_with_Angular_CRUD

This is a simple application demonstrating CRUD operations using laravel framework with Angular.

There is a famous tutorial online by scotch.io https://scotch.io/tutorials/create-a-laravel-and-angular-single-page-comment-application
I have used to same concept and improved it by adding my own Update and Delete operations.

To clone the repository follow the instructions below:

  1. Clone folder on your server.
  2. Install Laravel: composer install --prefer-dist
  3. Change your database settings in app/config/database.php [Important]
  4. Migrate your database: php artisan migrate
  5. Seed your database: php artisan db:seed
  6. View your application in the browser!