Skip to content

Latest commit

 

History

History
32 lines (31 loc) · 801 Bytes

File metadata and controls

32 lines (31 loc) · 801 Bytes

SimpleCrud

Simple CRUD using Angular & Laravel with MYSQL Database

1.- MySQL

Create database using the following command:
CREATE DATABASE movies_db;


2.- Laravel (backend folder)

You need to have installed Laravel on your own computer

Migrate tables to MySQL using the following command in shell or cmd:
php artisan migrate
After run the above command, start the Laravel Server as follows:
php artisan serve


3.- Angular (frontend folder)

Start Angular Server:
npm install
ng serve





Enjoy this simple movie crud.