In this video you will learn about how to create Full Stack Angular & Laravel checkbox filter. You will be able to learn about creating API in Laravel. You will be guided to learn all the basics to understand and implement the API from scratch. You will be able to implement the migration and implement Foreign key constraint to join two tables and fetch records from database. You will learn about testing the API using postman and implement the functionality.
SQL Query for this video
/** Products **/
INSERT INTO products (product_name) VALUES ('Laptop');
INSERT INTO products (product_name) VALUES ('Mobile');
INSERT INTO products (product_name) VALUES ('Sports');
INSERT INTO products (product_name) VALUES ('Vehicles');
/** Product Sub Category **/
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('Lenovo Thinkpad', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '2000', 1);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('Mac Mini', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '5000', 1);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('Samsung Galaxy S10', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '300', 2);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('Samsung Galaxy Note 20 Ultra', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '500', 2);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('Hockey', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '300', 3);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('American Baseball', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '200', 3);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('BMW', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry.', '9000', 4);
INSERT INTO product_sub_categories (title, description, price, product_id) VALUES ('Honda', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry., '6000', 4);
/** More Videos on Angular and Laravel (Full Stack) **/
Full Stack Search using Angular and Laravel
• Build Search Bar Using Angular & Laravel A...
Full Stack Laravel & Angular
• Full Stack Angular & Laravel CRUD | Part 1
Restful API CRUD in Laravel
• RESTful API CRUD with Laravel
Please don't forget to subscribe & support my YouTube channel for more interesting videos.
#full_stack #angular_laravel #angular_laravel_api