2]), [ 'currentPage' => $page_number, 'perPage' => 3, 'params' => ["class" => "table table-bordered", "border" => "2"], 'baseUrl' => "/admin/user", ]); $table = new ListJsonTable($dataProvider->getJson()); $table->beforePrint(function () { return PrimaryBtn::create("Создать", "/admin/user/create")->fetch(); //return (new PrimaryBtn("Создать", "/admin/user/create"))->fetch(); }); $table->afterPrint(function ($meta) { $pagination = new \Itguild\Tables\Pagination($meta['totalWithFilters'], $meta['perPage'], $meta['currentPage'], $meta['baseUrl'] . "/page"); $pagination->create(); return $pagination->fetch(); }); $table->addAction(UserViewActionColumn::class); $table->addAction(UserEditActionColumn::class); $table->addAction(UserDeleteActionColumn::class); $table->create(); $table->render();