Monday, August 27, 2018

Laravel E commerce Package

https://laracasts.com/discuss/channels/laravel/e-commerce-in-laravel

Friday, August 24, 2018

Dependent country state city dropdown using jquery ajax in Laravel 5

http://www.expertphp.in/article/dependent-country-state-city-dropdown-using-jquery-ajax-in-laravel-5-example

Dependent country state city dropdown using jquery ajax in Laravel 5

In this tutorial, I am going to explain the dynamic dependent country state and city dropdown using jQuery Ajax in PHP Laravel and MySQL.
There are so many situation in the application where you will need to define dependent dropdown such as when you are working with e-commerce portal then there is need to define dependent dropdown for their category and sub-category because each category have many sub-categories so sub-category will be display on behalf of selected category.
In this post, i have three table :
  • countries table
  • states table
  • cities table
First i will display all country data in first select box and when i select any country from country dropdown then related state will be listed in second dropdown and same when i select state from state dropdown then related city will be listed in third dropdown.