3.2.2

Changes

  • Dutch language files added

  • ajax datatables example added

Files Changed

Modified

  • app/Http/routes.php

  • resources/views/admin/layouts/default.blade.php

New

  • app/Http/Controllers/DataTablesController.php

  • resources/lang/nl/*

  • resources/views/admin/examples/datatables.blade.php

Updating

for ajax datatables we are using https://github.com/yajra/laravel-datatables

add packages to composer

open your composer and add following packages

    "yajra/laravel-datatables-oracle": "~5.0"

then in your terminal hit composer update

publish vendor files

in terminal hit php artisan vendor:publish

service providers

open config/app.php and add following lines in providers array

yajra\Datatables\DatatablesServiceProvider::class,

in aliases</code> array add

'Datatables' => yajra\Datatables\Datatables::class,

Last updated