In this tutorial you will learn about the Laravel 8 Vue JS Datatables Tutorial with Example and its application with practical example.
In this Laravel 8 Vue JS Datatables Example Tutorial I’ll show you how to use Datatables with Vue Js in laravel. In this tutorial you will learn to use datatables with Vue Js in laravel. In this article I will demonstrate the use of Datatables with Vue Js with example in laravel 8.
Laravel 8 Vue JS Datatables Tutorial with Example
In this step by step tutorial I will show you how to implement and use Datatables with Vue Js in laravel 8. Please follow the instruction given below:
- Step 1: Install Laravel 8 App
- Step 2: Connecting App to Database
- Step 3: Create Model And Migration
- Step 4: NPM Configuration
- Step 5: Add Routes
- Step 6: Create Controller By Command
- Step 7: Create Vue Component
- Step 8: Create Blade Views And Initialize Vue Components
- Step 9: Run Development Server
Step 1: Install Laravel 8 App
First of all we need to create a fresh laravel project, download and install Laravel 8 using the below command
1 |
composer create-project --prefer-dist laravel/laravel blog |
Step 2: Connecting App to Database
Now, lets create a MySQL database and connect it with laravel application. After creating database we need to set database credential in application’s .env file.
1 2 3 4 5 6 |
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=here your database name here DB_USERNAME=here database username here DB_PASSWORD=here database password here |
Step 3: Create Model And Migration
Now, in this step we will create model and migration file. Please run the following command:
1 |
php artisan make:model Post -fm |
The above command will create a model name post.php and also create a migration file for the posts table. Open create_posts_table.php migration file from database>migrations and replace up() function with following code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePostsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('posts', function (Blueprint $table) { $table->bigIncrements('id'); $table->string('title'); $table->string('slug'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('posts'); } } |
Now, in this step we will create model and migration file. Please run the following command:
1 |
php artisan migrate |
Now, go to app/Models/Post.php and put the following code into your Post.php model as follow:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Post extends Model { use HasFactory; protected $guarded = []; } |
Next, go to database/factories and open PostFactory.php. Then put the following code into it as follow:
1 2 3 4 5 6 7 8 9 |
/** @var \Illuminate\Database\Eloquent\Factory $factory */ use App\Models\Post; use Faker\Generator as Faker; $factory->define(Post::class, function (Faker $faker) { return [ 'title' => $faker->sentence, 'slug' => \Str::slug($faker->sentence) ]; }); |
Now, execute following command to generate fake records using faker as follow:
1 2 3 4 |
php artisan tinker //and then factory(\App\Models\Post::class,100)->create() exit |
Step 4: NPM Configuration
1 |
php artisan preset vue |
Install all Vue dependencies:
1 |
npm install |
Install vuejs-datatable:
1 |
npm install vuejs-datatable |
Step 5: Add Routes
After this, we need to define routes in “routes/web.php” file. Lets open “routes/web.php” file and add the following routes in it.
routes/web.php
1 2 3 |
use App\Http\Controllers\PostController; Route::get('posts', [PostController::class, 'index']); |
Step 6: Create Controller By Command
Now, lets create a controller named PostController using command given below –
1 |
php artisan make:controller PostController |
Now, go to app\Http\Controllers
and open PostController.php file. Then put the following code into your PostController.php file:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?php namespace App\Http\Controllers; use App\Models\Post; use Illuminate\Http\Request; class PostController extends Controller { public function index(Request $request) { $posts = Post::get(); return response()->json($posts); } } |
Step 7: Create Vue Component
In this step we will create a Vue component. Go to resources/assets/js/components
folder and create a file called DataTableComponent.vue. Now, update the following code into your DataTableComponent.vue components file:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<template> <div class="container"> <div class="row justify-content-center"> <div class="col-md-8"> <div class="card"> <div class="card-header">Laravel Vue Datatables Component Example</div> <div class="card-body"> <datatable :columns="columns" :data="rows"></datatable> <datatable-pager v-model="page" type="abbreviated" :per-page="per_page"></datatable-pager> </div> </div> </div> </div> </div> </template> <script> import DatatableFactory from 'vuejs-datatable'; export default { components: { DatatableFactory }, mounted() { console.log('Component mounted.') }, data(){ return { columns: [ {label: 'id', field: 'id'}, {label: 'Title', field: 'title'}, {label: 'Slug', field: 'slug'} ], rows: [], page: 1, per_page: 10, } }, methods:{ getPosts: function() { axios.get('/posts').then(function(response){ this.rows = response.data; }.bind(this)); } }, created: function(){ this.getPosts() } } </script> |
Now open resources/assets/js/app.js
and include the DataTableComponent.vue component as follow:
1 2 3 4 5 6 |
require('./bootstrap'); window.Vue = require('vue'); Vue.component('datatable-component', require('./components/DataTableComponent.vue').default); const app = new Vue({ el: '#app', }); |
Step 8: Create Blade Views And Initialize Vue Components
In this step we will create blade view files. Go to resources/views and create one folder named layouts. Inside this folder create one blade view file named app.blade.php file.
Now, go to resources/views/layouts and open app.blade.php file. Then put the following code into your app.blade.php file as follow:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>Laravel 8 Vue JS DataTable Example Tutorial</title> <script src="{{ asset('js/app.js') }}" defer></script> <link href="{{ asset('css/app.css') }}" rel="stylesheet"> @stack('fontawesome') </head> <body> <div id="app"> <main class="py-4"> @yield('content') </main> </div> </body> </html> |
Next, go to resources/views/ and open welocome.blade.php. Then put the following code into your welcome.blade.php file as follow:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
@extends('layouts.app') @section('content') <div class="container"> <div class="row justify-content-center"> <div class="col-md-8"> <div class="card"> <div class="card-header">Laravel Vue Js DataTable Example</div> <div class="card-body"> <datatable-component></datatable-component> </div> </div> </div> </div> </div> @endsection |
Step 9: Run Development Server
Now we are ready to run our example so lets start the development server using following artisan command –
1 2 3 |
npm run dev or npm run watch |