23 lines
840 B
PHP
23 lines
840 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @var \Illuminate\Database\Eloquent\Collection $option
|
||
|
*/
|
||
|
|
||
|
use Itguild\EloquentTable\ViewEloquentTable;
|
||
|
use Itguild\EloquentTable\ViewJsonTableEloquentModel;
|
||
|
use kernel\IGTabel\btn\DangerBtn;
|
||
|
use kernel\IGTabel\btn\PrimaryBtn;
|
||
|
use kernel\IGTabel\btn\SuccessBtn;
|
||
|
|
||
|
$table = new ViewEloquentTable(new ViewJsonTableEloquentModel($option, [
|
||
|
'params' => ["class" => "table table-bordered", "border" => "2"],
|
||
|
'baseUrl' => "/admin/user",
|
||
|
]));
|
||
|
$table->beforePrint(function () use ($option) {
|
||
|
$btn = PrimaryBtn::create("Список", "/admin/option")->fetch();
|
||
|
$btn .= SuccessBtn::create("Редактировать", "/admin/option/update/" . $option->id)->fetch();
|
||
|
$btn .= DangerBtn::create("Удалить", "/admin/option/delete/" . $option->id)->fetch();
|
||
|
return $btn;
|
||
|
});
|
||
|
$table->create();
|
||
|
$table->render();
|