BeaconTablesController.php
786 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: 10:53
*/
namespace App\Http\Controllers\Backend\Beacon;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Yajra\DataTables\Facades\DataTables;
use App\Repositories\Backend\Beacon\BeaconRepository;
class BeaconTablesController extends Controller
{
private $beacon;
public function __construct(BeaconRepository $beacon)
{
$this->beacon = $beacon;
}
public function __invoke(Request $request)
{
return DataTables::of($this->beacon->getinfo())
->addColumn('actions', function ($beacon) {
return $beacon->action_buttons;
})
->rawColumns(['actions'])
->make(true);
}
}