Posts

Showing posts with the label server-side-datatable

Laravel Server Side Yajra DataTable - Load Large Data Within Few Seconds

Image
  Large Data or 1 million Data Quick Load within few seconds in Laravel Server Side DataTables  Run the following in the  command/terminal to create a new laravel project , 1 composer create-project laravel/laravel yajra-table-large-data-handle Run the following in the  command/terminal to install yajra datatables package , 1 composer require yajra / laravel - datatables - oracle Check  composer.json 1 2 3 4 "require" : { ………………          "yajra/laravel-datatables-oracle" : "~9.0" } ,   Add the following code file to  config/app.php 1 2 3 4 5 6 7 8 9 'providers' = > [      . . . ,      Yajra \ DataTables \ DataTablesServiceProvider :: class , ]   'aliases' = > [      . . . ,      'DataTables' = > Yajra \ DataTables \ Facades \ DataTables :: class , ] publish the configuration, run the following line in the...