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
|
|
|
*/
|
|
|
|
|
|
|
|
use app\models\User;
|
2024-08-30 16:14:31 +03:00
|
|
|
use app\tables\columns\user\UserDeleteActionColumn;
|
|
|
|
use app\tables\columns\user\UserEditActionColumn;
|
|
|
|
use app\tables\columns\user\UserViewActionColumn;
|
2024-08-07 15:30:45 +03:00
|
|
|
use Itguild\EloquentTable\EloquentDataProvider;
|
|
|
|
use Itguild\EloquentTable\ListEloquentTable;
|
2024-07-24 17:22:59 +03:00
|
|
|
use kernel\IGTabel\btn\PrimaryBtn;
|
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
$table->addAction(UserViewActionColumn::class);
|
|
|
|
$table->addAction(UserEditActionColumn::class);
|
2024-07-25 16:15:18 +03:00
|
|
|
$table->addAction(UserDeleteActionColumn::class);
|
2024-07-24 17:22:59 +03:00
|
|
|
$table->create();
|
|
|
|
$table->render();
|