39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @var \Illuminate\Database\Eloquent\Collection $slider
 | |
|  */
 | |
| 
 | |
| use Itguild\EloquentTable\ViewEloquentTable;
 | |
| use Itguild\EloquentTable\ViewJsonTableEloquentModel;
 | |
| use kernel\IGTabel\btn\DangerBtn;
 | |
| use kernel\IGTabel\btn\PrimaryBtn;
 | |
| use kernel\IGTabel\btn\SuccessBtn;
 | |
| 
 | |
| $table = new ViewEloquentTable(new ViewJsonTableEloquentModel($slider, [
 | |
|     'params' => ["class" => "table table-bordered", "border" => "2"],
 | |
|     'baseUrl' => "/admin/slider",
 | |
| ]));
 | |
| $table->beforePrint(function () use ($slider) {
 | |
|     $btn = \kernel\widgets\IconBtn\IconBtnListWidget::create(['url' => "/admin/slider"])->run();
 | |
|     $btn .= \kernel\widgets\IconBtn\IconBtnEditWidget::create(['url' => "/admin/slider/update/" . $slider->id])->run();
 | |
|     $btn .= \kernel\widgets\IconBtn\IconBtnDeleteWidget::create(['url' => "/admin/slider/delete/" . $slider->id])->run();
 | |
|     return $btn;
 | |
| });
 | |
| 
 | |
| $entityRelation = new \kernel\EntityRelation();
 | |
| $additionals = $entityRelation->getEntityAdditionalProperty("slider", $slider);
 | |
| 
 | |
| foreach ($additionals as $key => $additional) {
 | |
|     $table->addRow($key, function () use ($additional) {
 | |
|         return $additional;
 | |
|     }, ['after' => 'status']);
 | |
| }
 | |
| 
 | |
| $table->rows([
 | |
|     'status' => (function ($data) {
 | |
|         return \kernel\app_modules\slider\models\Slider::getStatus()[$data];
 | |
|     })
 | |
| ]);
 | |
| $table->create();
 | |
| $table->render(); |