PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
simple-slider
/
src
/
Tables
<?php namespace Botble\SimpleSlider\Tables; use BaseHelper; use Botble\SimpleSlider\Repositories\Interfaces\SimpleSliderItemInterface; use Botble\Table\Abstracts\TableAbstract; use Html; use Illuminate\Contracts\Routing\UrlGenerator; use Illuminate\Support\Facades\Auth; use Yajra\DataTables\DataTables; class SimpleSliderItemTable extends TableAbstract { /** * @var string */ protected $type = self::TABLE_TYPE_SIMPLE; /** * @var string */ protected $view = 'plugins/simple-slider::items'; /** * @var SimpleSliderItemInterface */ protected $repository; /** * SimpleSliderItemTable constructor. * @param DataTables $table * @param UrlGenerator $urlGenerator * @param SimpleSliderItemInterface $simpleSliderItemRepository */ public function __construct( DataTables $table, UrlGenerator $urlGenerator, SimpleSliderItemInterface $simpleSliderItemRepository ) { parent::__construct($table, $urlGenerator); $this->setOption('id', 'simple-slider-items-table'); $this->repository = $simpleSliderItemRepository; if (!Auth::user()->hasAnyPermission(['simple-slider-item.edit', 'simple-slider-item.destroy'])) { $this->hasOperations = false; $this->hasActions = false; } } /** * {@inheritDoc} */ public function ajax() { $data = $this->table ->eloquent($this->query()) ->editColumn('image', function ($item) { return view('plugins/simple-slider::partials.thumbnail', compact('item'))->render(); }) ->editColumn('title', function ($item) { if (!Auth::user()->hasPermission('simple-slider-item.edit')) { return $item->title; } return Html::link('#', $item->title, [ 'data-fancybox' => true, 'data-type' => 'ajax', 'data-src' => route('simple-slider-item.edit', $item->id), ]); }) ->editColumn('checkbox', function ($item) { return $this->getCheckbox($item->id); }) ->editColumn('created_at', function ($item) { return BaseHelper::formatDate($item->created_at); }) ->addColumn('operations', function ($item) { return view('plugins/simple-slider::partials.actions', compact('item'))->render(); }); return $this->toJson($data); } /** * {@inheritDoc} */ public function query() { $query = $this->repository->getModel() ->select([ 'id', 'title', 'image', 'order', 'created_at', ]) ->orderBy('order') ->where('simple_slider_id', request()->route()->parameter('id')); return $this->applyScopes($query); } /** * {@inheritDoc} */ public function columns() { return [ 'id' => [ 'title' => trans('core/base::tables.id'), 'width' => '20px', ], 'image' => [ 'title' => trans('core/base::tables.image'), 'class' => 'text-center', ], 'title' => [ 'title' => trans('core/base::tables.title'), 'class' => 'text-left', ], 'order' => [ 'title' => trans('core/base::tables.order'), 'class' => 'text-left order-column', ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'width' => '100px', ], ] + $this->getOperationsHeading(); } /** * {@inheritDoc} */ public function getOperationsHeading() { return array_merge(parent::getOperationsHeading(), ['operations' => ['width' => '170px']]); } }
[+]
..
[-] SimpleSliderTable.php
[edit]
[-] SimpleSliderItemTable.php
[edit]