28 lines
		
	
	
		
			903 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			903 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @var \Illuminate\Database\Eloquent\Collection $users
 | |
|  */
 | |
| 
 | |
| use app\models\User;
 | |
| use app\tables\columns\UserEditActionColumn;
 | |
| use app\tables\columns\UserViewActionColumn;
 | |
| use Itguild\Tables\ListJsonTable;
 | |
| use kernel\IGTabel\btn\PrimaryBtn;
 | |
| use kernel\IGTabel\ListJsonTableEloquentCollection;
 | |
| 
 | |
| $dataProvider = new ListJsonTableEloquentCollection($users, [
 | |
|     'model' => User::class,
 | |
|     'perPage' => 5,
 | |
|     '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->addAction(UserViewActionColumn::class);
 | |
| $table->addAction(UserEditActionColumn::class);
 | |
| $table->create();
 | |
| $table->render(); |