ExplainTablesController.php
798 Bytes
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
<?php
/**
* Created by PhpStorm.
* User: Administrator
* Date: 2018/1/30
* Time: 18:21
*/
namespace App\Http\Controllers\Backend\Explain;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Yajra\DataTables\Facades\DataTables;
use App\Repositories\Backend\Explain\ExplainRepository;
class ExplainTablesController extends Controller
{
private $explain;
public function __construct(ExplainRepository $explain)
{
$this->explain = $explain;
}
public function __invoke(Request $request)
{
return DataTables::of($this->explain->getinfo())
->addColumn('actions', function ($explain) {
return $explain->action_buttons;
})
->rawColumns(['actions'])
->make(true);
}
}