Laravel Vue Dependent Dropdown Example

Laravel Vue Dependent Dropdown Example

In this post we will give you information about Laravel Vue Dependent Dropdown Example. Hear we will give you detail about Laravel Vue Dependent Dropdown ExampleAnd how to use it also give you demo for it if it is necessary.

In this tutorial, i would like to share with you to create dependent dropdown with laravel and vuejs. i will create simple example of laravel vue dependent dropdown example. we will create country state city dependent dropdown using laravel 5.8 and vue js.

Now days, all are using vue js with laravel, so might be sometime we need to create function like dependent dropdown with country state city dropdown. so i will help you to create dependent dropdown using vue js, axios, api and laravel 5.8.

In this example, i created two tables “countries” and “states”. Then i created two get api that will return data. Then we will write code for vue.js and component, we will create two dropdown with ajax code using axios. you can see bellow preview and download source code.

Preview:

Step 1 : Install Laravel 5.8 App

In the first step, we require to get fresh Laravel 5.8 application using bellow command, So open your terminal OR command prompt and run bellow command:

composer create-project --prefer-dist laravel/laravel blog

Step 2: Create Country and State Table

in second step, we have to create migration for “countries” and “states” table using Laravel 5.8 php artisan command, so first fire bellow command:

php artisan make:migration create_countries_table

After this command you will find one file in following path “database/migrations” and you have to put bellow code in your migration file for create posts table.

<?php

use IlluminateSupportFacadesSchema;

use IlluminateDatabaseSchemaBlueprint;

use IlluminateDatabaseMigrationsMigration;

class CreateCountriesTable extends Migration

{

/**

* Run the migrations.

*

* @return void

*/

public function up()

{

Schema::create('countries', function (Blueprint $table) {

$table->bigIncrements('id');

$table->string('name');

$table->timestamps();

});

Schema::create('states', function (Blueprint $table) {

$table->bigIncrements('id');

$table->integer('country_id');

$table->string('name');

$table->timestamps();

});

}

/**

* Reverse the migrations.

*

* @return void

*/

public function down()

{

Schema::dropIfExists('countries');

Schema::dropIfExists('states');

}

}

After create migration we need to run above migration by following command:

php artisan migrate

Also see:Laravel Vue JS Pagination Example with Demo

Step 3: Create Country and State Model

In this step, we need to create two model for country and state. So let’s run bellow command and create model.

php artisan make:model Country

app/Country.php

<?php

namespace App;

use IlluminateDatabaseEloquentModel;

class Country extends Model

{

}

php artisan make:model State

app/State.php

<?php

namespace App;

use IlluminateDatabaseEloquentModel;

class State extends Model

{

}

After create migration and model, Make sure you have to add some dummy records in your “countries” and “states” table.

Step 4: Create API

In this step, we will create two api route for getting data. So, let’s add new route on that file.

routes/api.php

Route::get('getCountries', 'APIController@getCountries');

Route::get('getStates', 'APIController@getStates');


Step 5: Create APIController

in this step, now we have create APIController with two methods, in this method we will return data. So let’s create controller:

app/Http/Controllers/APIController.php

<?php

namespace AppHttpControllers;

use IlluminateHttpRequest;

use AppCountry;

use AppState;

class APIController extends Controller

{

/**

* Create a new controller instance.

*

* @return void

*/

public function getCountries()

{

$data = Country::get();

return response()->json($data);

}

/**

* Create a new controller instance.

*

* @return void

*/

public function getStates(Request $request)

{

$data = State::where('country_id', $request->country_id)->get();

return response()->json($data);

}

}

Step 6: NPM Configuration

In this step, we have to first add setup of vue js and then install npm, so let’s run bellow command in your project.

Install vue:

php artisan preset vue

Install npm:

npm install

Step 7: Update Components

Here, we will write code on components, So let’s update file and put bellow code:

resources/assets/js/components/ExampleComponent.vue

<template>

<div >

<div >

<div >

<div >

<div >Laravel Vue Dependent Dropdown Example - ItSolutionStuff.com</div>

<div >

<div >

<label>Select Country:</label>

<select class='form-control' v-model='country' @change='getStates()'>

<option value='0' >Select Country</option>

<option v-for='data in countries' :value='data.id'>{{ data.name }}</option>

</select>

</div>

<div >

<label>Select State:</label>

<select class='form-control' v-model='state'>

<option value='0' >Select State</option>

<option v-for='data in states' :value='data.id'>{{ data.name }}</option>

</select>

</div>

</div>

</div>

</div>

</div>

</div>

</template>

<script>

export default {

mounted() {

console.log('Component mounted.')

},

data(){

return {

country: 0,

countries: [],

state: 0,

states: []

}

},

methods:{

getCountries: function(){

axios.get('/api/getCountries')

.then(function (response) {

this.countries = response.data;

}.bind(this));

},

getStates: function() {

axios.get('/api/getStates',{

params: {

country_id: this.country

}

}).then(function(response){

this.states = response.data;

}.bind(this));

}

},

created: function(){

this.getCountries()

}

}

</script>

Step 6: Update welcome.blade.php

At last step, we will update our welcome.blade.php file. in this file we will use app.js file and use it, so let’s update.

resources/views/welcome.blade.php

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta name="csrf-token" content="{{ csrf_token() }}">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Laravel Vue Dependent Dropdown Example - ItSolutionStuff.com</title>

<link href="{{asset('css/app.css')}}" rel="stylesheet" type="text/css">

</head>

<body>

<div id="app">

<example-component></example-component>

</div>

<script src="{{asset('js/app.js')}}" ></script>

</body>

</html>

Now you have to run below command for update app.js file:

Also see:Laravel Vue Datatables Component Example

npm run dev

Now you can check our example and also check demo and download free code.

You can download code from git: Download Code from Github

I hope it can help you…

Hope this code and post will helped you for implement Laravel Vue Dependent Dropdown Example. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

6  +  1  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US