user crud
This commit is contained in:
@ -1,23 +1,22 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @var \Illuminate\Database\Eloquent\Collection $users
|
||||
* @var int $page_id
|
||||
* @var int $page_number
|
||||
*/
|
||||
|
||||
use app\models\User;
|
||||
use app\tables\columns\UserDeleteActionColumn;
|
||||
use app\tables\columns\UserEditActionColumn;
|
||||
use app\tables\columns\UserViewActionColumn;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Itguild\Tables\ListJsonTable;
|
||||
use kernel\IGTabel\btn\PrimaryBtn;
|
||||
use kernel\IGTabel\ListJsonTableEloquentCollection;
|
||||
|
||||
$perPage = 3;
|
||||
$chunks = $users->forPage($page_id, $perPage);
|
||||
$dataProvider = new ListJsonTableEloquentCollection($chunks, [
|
||||
'model' => User::class,
|
||||
'perPage' => 5,
|
||||
|
||||
$dataProvider = new \kernel\IGTabel\EloquentDataProvider(User::where(['status' => 2]), [
|
||||
'currentPage' => $page_number,
|
||||
'perPage' => 3,
|
||||
'params' => ["class" => "table table-bordered", "border" => "2"],
|
||||
'baseUrl' => "/admin/user",
|
||||
]);
|
||||
@ -26,8 +25,8 @@ $table->beforePrint(function () {
|
||||
return PrimaryBtn::create("Создать", "/admin/user/create")->fetch();
|
||||
//return (new PrimaryBtn("Создать", "/admin/user/create"))->fetch();
|
||||
});
|
||||
$table->afterPrint(function () use ($page_id, $users, $perPage) {
|
||||
$pagination = new \Itguild\Tables\Pagination($users->count(), $perPage, $page_id, "/admin/user/page");
|
||||
$table->afterPrint(function ($meta) {
|
||||
$pagination = new \Itguild\Tables\Pagination($meta['totalWithFilters'], $meta['perPage'], $meta['currentPage'], $meta['baseUrl'] . "/page");
|
||||
$pagination->create();
|
||||
return $pagination->fetch();
|
||||
});
|
||||
|
Reference in New Issue
Block a user