30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @var \Illuminate\Database\Eloquent\Collection $tg
|
|
*/
|
|
|
|
use kernel\modules\user\models\User;
|
|
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($tg, [
|
|
'params' => ["class" => "table table-bordered", "border" => "2"],
|
|
'baseUrl' => "/admin/tg-bot-notification",
|
|
]));
|
|
$table->beforePrint(function () use ($tg) {
|
|
$btn = PrimaryBtn::create("Список", "/admin/tg-bot-notification")->fetch();
|
|
$btn .= SuccessBtn::create("Редактировать", "/admin/tg-bot-notification/update/" . $tg->id)->fetch();
|
|
$btn .= DangerBtn::create("Удалить", "/admin/tg-bot-notification/delete/" . $tg->id)->fetch();
|
|
return $btn;
|
|
});
|
|
$table->rows([
|
|
'status' => (function ($data) {
|
|
return \kernel\app_modules\tgbot\models\TgbotNotification::getStatus()[$data];
|
|
})
|
|
]);
|
|
$table->create();
|
|
$table->render(); |