Laravel 5 Tutorial : How to Implement DataTables Ajax with yajra datatables

laravel 5.3 tutorial for beginners : how to implement DataTables Ajax with yajra datatables in laravel 5.3 for beginners

Laravel 5.3 Ajax Tutorial - How to implement DataTables Ajax with yajra datatables package in laravel 5.3, this tutorial will show you how to display, shorting, searching data from database using datatables ajax plugin in laravel 5.3

at the previews lessons, we have create simple Laravel 5.3 project, please read :
  1. Laravel 5.3 Ajax CRUD Application
  2. Laravel 5.3 Vue.Js CRUD Application
  3. Laravel 5.3 CRUD with Resource Controller
  4. Laravel 5.3 AngularJS CRUD Application

Video Tutorial Implement DataTables Ajax with yajra datatables



Full Source Code Implement DataTables Ajax with yajra datatables

First, we need to install Laravel Datatables Package

Install Laravel Datatables Package

composer require yajra/laravel-datatables-oracle

Next, Add Datatables Service Provider and Facade into config/app.php

...
Yajra\Datatables\DatatablesServiceProvider::class,
...

and

...
'Datatables' => Yajra\Datatables\Facades\Datatables::class,
...

Next, publish the configuration file.

php artisan vendor:publish

Controller (app\Http\Controllers\Auth\PostsController.php)

// use datatables
use Yajra\Datatables\Datatables;

Function Show data using DataTables

  // show datatables page
  public function datatables(){
    return view('admin/posts/datatables');
  }

  // show all posts data
  public function postsdata(){
    return Datatables::of(\App\Posts::all())->make(true);
  }

Routes (Web.php)

  // datatables route
  Route::get('admin/posts/datatables', 'Auth\PostsController@datatables');
  Route::get('admin/posts/postsdata', 'Auth\PostsController@postsdata');

Views (resources\views\admin\posts\datatables.blade.php)

@extends('layouts.dashbord')
@section('content')
  <h2 class="sub-header">Simple DataTables in laravel 5.3</h2>
  <div class="row">
    <div class="col-md-9">
      <a href="{{ url('admin/posts/new-post')}}" class="btn btn-primary btn-sm">Add New Post</a>
    </div>
<br>
  </div>
  <div class="table-responsive">
    <table class="table table-striped" id="allposts">
      <thead>
      <tr>
        <th>Id</th>
        <th>Title</th>
        <th>Description</th>
        <th>Created</th>
      </tr>
    </thead>
    <tbody>
    </tbody>
    </table>
  </div>
@stop

@push('scripts')
<script type="text/javascript">
  $(function(){
    $('#allposts').DataTable({
      processing: true,
      serverSide: true,
      ajax: '{!! URL::asset('admin/posts/postsdata') !!}',
      columns : [
        { data: 'id', name: 'id' },
        { data: 'title', name: 'title' },
        { data: 'description', name: 'description' },
        { data: 'updated_at', name: 'updated_at' }
      ]
    });
  });
</script>
@endpush

Master Blade Templates (resources\views\layouts\dashbord.blade.php)

in your master blade, add this line in the body tag

<!-- jQuery -->
<script src="//code.jquery.com/jquery.js"></script>
<!-- DataTables -->
<script src="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>

@stack('scripts')


More Laravel Tutorial

Laravel 5.3 CRUD with VueJS


Laravel 5.3 CRUD with AJAX


Laravel 5.3 CRUD with Resource Controller



See you next lessons ....

COMMENTS


Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: Laravel 5 Tutorial : How to Implement DataTables Ajax with yajra datatables
Laravel 5 Tutorial : How to Implement DataTables Ajax with yajra datatables
laravel 5.3 tutorial for beginners : how to implement DataTables Ajax with yajra datatables in laravel 5.3 for beginners
https://i.ytimg.com/vi/5RqlU0FMQ8M/hqdefault.jpg
https://i.ytimg.com/vi/5RqlU0FMQ8M/default.jpg
KODE AJAIB
https://scqq.blogspot.com/2016/12/how-to-implement-datatables-ajax-yajra.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/12/how-to-implement-datatables-ajax-yajra.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy