PHP code example of yazan / laravel-datatable
1. Go to this page and download the library: Download yazan/laravel-datatable library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yazan / laravel-datatable example snippets
// app/DataGrid/PostGrid.php
namespace App\\DataGrid;
use Yazan\DataTable\Mysql\Eloquent\Eloquent;
class PostGrid
{
use Eloquent;
public $model = "App\\Models\\Post";
}
// app/Http/Controller/PostController.php
public function all(Request $request)
{
$posts = (new PostGrid())->render();
return ['success' => true, 'collection' => $posts];
}