MicroFrameWork/kernel/modules/option/views/index.php

38 lines
1.1 KiB
PHP
Raw Normal View History

2024-09-23 15:33:48 +03:00
<?php
/**
* @var \Illuminate\Database\Eloquent\Collection $options
* @var int $page_number
*/
use Itguild\EloquentTable\EloquentDataProvider;
use Itguild\EloquentTable\ListEloquentTable;
2024-10-17 14:55:00 +03:00
use kernel\IGTabel\action_column\DeleteActionColumn;
use kernel\IGTabel\action_column\EditActionColumn;
use kernel\IGTabel\action_column\ViewActionColumn;
2024-09-23 15:33:48 +03:00
use kernel\IGTabel\btn\PrimaryBtn;
use kernel\modules\option\models\Option;
$table = new ListEloquentTable(new EloquentDataProvider(Option::class, [
'current_page' => $page_number,
'per_page' => 5,
'params' => ["class" => "table table-bordered", "border" => "2"],
'baseUrl' => "/admin/option",
]));
$table->beforePrint(function () {
return PrimaryBtn::create("Создать", "/admin/option/create")->fetch();
//return (new PrimaryBtn("Создать", "/admin/user/create"))->fetch();
});
2024-09-24 14:57:25 +03:00
$table->columns([
"status" => [
"value" => function ($cell) {
return Option::getStatus()[$cell];
}]
]);
2024-10-17 14:55:00 +03:00
$table->addAction(ViewActionColumn::class);
$table->addAction(EditActionColumn::class);
$table->addAction(DeleteActionColumn::class);
2024-09-23 15:33:48 +03:00
$table->create();
$table->render();