2024-07-24 17:22:59 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @var \Illuminate\Database\Eloquent\Collection $users
|
2024-07-31 12:59:06 +03:00
|
|
|
* @var int $page_number
|
2024-07-24 17:22:59 +03:00
|
|
|
*/
|
|
|
|
|
2024-09-23 15:33:48 +03:00
|
|
|
|
2024-08-07 15:30:45 +03:00
|
|
|
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-07-24 17:22:59 +03:00
|
|
|
use kernel\IGTabel\btn\PrimaryBtn;
|
2024-09-06 16:53:20 +03:00
|
|
|
use kernel\modules\user\models\User;
|
2024-07-24 17:22:59 +03:00
|
|
|
|
2024-08-07 15:30:45 +03:00
|
|
|
$table = new ListEloquentTable(new EloquentDataProvider(User::class, [
|
2024-07-31 12:59:06 +03:00
|
|
|
'currentPage' => $page_number,
|
|
|
|
'perPage' => 3,
|
2024-07-24 17:22:59 +03:00
|
|
|
'params' => ["class" => "table table-bordered", "border" => "2"],
|
|
|
|
'baseUrl' => "/admin/user",
|
2024-08-29 16:18:49 +03:00
|
|
|
'filters' => ['email'],
|
2024-08-07 15:30:45 +03:00
|
|
|
]));
|
|
|
|
$table->columns([
|
2024-08-29 16:18:49 +03:00
|
|
|
'username' => [
|
|
|
|
"filter" => [
|
|
|
|
'class' => \Itguild\Tables\Filter\InputTextFilter::class
|
|
|
|
]
|
|
|
|
],
|
2024-08-07 15:30:45 +03:00
|
|
|
'created_at' => function ($data) {
|
|
|
|
if (!$data){
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (new DateTimeImmutable($data))->format("d-m-Y");
|
|
|
|
},
|
|
|
|
'updated_at' => function ($data) {
|
|
|
|
if (!$data){
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (new DateTimeImmutable($data))->format("d-m-Y");
|
|
|
|
}
|
2024-07-24 17:22:59 +03:00
|
|
|
]);
|
2024-07-30 12:27:44 +03:00
|
|
|
$table->beforePrint(function () {
|
2024-07-24 17:22:59 +03:00
|
|
|
return PrimaryBtn::create("Создать", "/admin/user/create")->fetch();
|
|
|
|
//return (new PrimaryBtn("Создать", "/admin/user/create"))->fetch();
|
|
|
|
});
|
2024-10-17 14:55:00 +03:00
|
|
|
$table->addAction(ViewActionColumn::class);
|
|
|
|
$table->addAction(EditActionColumn::class);
|
|
|
|
$table->addAction(DeleteActionColumn::class);
|
2024-07-24 17:22:59 +03:00
|
|
|
$table->create();
|
|
|
|
$table->render();
|