2024-07-25 16:15:18 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2024-07-26 11:57:05 +03:00
|
|
|
* @var \Illuminate\Database\Eloquent\Collection $contents
|
2024-08-07 15:30:45 +03:00
|
|
|
* @var int $page_number
|
2024-07-25 16:15:18 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
use app\models\Post;
|
2024-08-07 15:30:45 +03:00
|
|
|
use app\models\User;
|
2024-07-26 16:09:06 +03:00
|
|
|
use app\tables\columns\PostDeleteActionColumn;
|
|
|
|
use app\tables\columns\PostEditActionColumn;
|
|
|
|
use app\tables\columns\PostViewActionColumn;
|
2024-08-07 15:30:45 +03:00
|
|
|
use Itguild\EloquentTable\EloquentDataProvider;
|
|
|
|
use Itguild\EloquentTable\ListEloquentTable;
|
2024-07-25 16:15:18 +03:00
|
|
|
use kernel\IGTabel\btn\PrimaryBtn;
|
|
|
|
|
2024-08-07 15:30:45 +03:00
|
|
|
$table = new ListEloquentTable(new EloquentDataProvider(Post::class, [
|
|
|
|
'currentPage' => $page_number,
|
|
|
|
'perPage' => 3,
|
2024-07-25 16:15:18 +03:00
|
|
|
'params' => ["class" => "table table-bordered", "border" => "2"],
|
2024-08-07 15:30:45 +03:00
|
|
|
'baseUrl' => "/admin/post"
|
|
|
|
]));
|
|
|
|
$table->columns([
|
|
|
|
'created_at' => function ($data) {
|
|
|
|
if (!$data){
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (new DateTimeImmutable($data))->format("d-m-Y");
|
|
|
|
},
|
|
|
|
'updated_at' => function ($data) {
|
|
|
|
if (!$data){
|
|
|
|
return null;
|
|
|
|
}
|
2024-07-26 12:42:44 +03:00
|
|
|
|
2024-08-07 15:30:45 +03:00
|
|
|
return (new DateTimeImmutable($data))->format("d-m-Y");
|
|
|
|
},
|
|
|
|
'user_id' => (function ($data) {
|
|
|
|
return User::find($data)->username;
|
|
|
|
})
|
|
|
|
]);
|
|
|
|
$table->beforePrint(function () {
|
2024-07-25 16:15:18 +03:00
|
|
|
return PrimaryBtn::create("Создать", "/admin/post/create")->fetch();
|
|
|
|
//return (new PrimaryBtn("Создать", "/admin/user/create"))->fetch();
|
|
|
|
});
|
2024-07-26 16:09:06 +03:00
|
|
|
$table->addAction(PostViewActionColumn::class);
|
|
|
|
$table->addAction(PostEditActionColumn::class);
|
|
|
|
$table->addAction(PostDeleteActionColumn::class);
|
2024-07-25 16:15:18 +03:00
|
|
|
$table->create();
|
|
|
|
$table->render();
|