PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
blog
/
src
/
Tables
<?php namespace Botble\Blog\Tables; use BaseHelper; use Botble\Base\Enums\BaseStatusEnum; use Botble\Blog\Repositories\Interfaces\TagInterface; use Botble\Table\Abstracts\TableAbstract; use Html; use Illuminate\Contracts\Routing\UrlGenerator; use Illuminate\Support\Facades\Auth; use Yajra\DataTables\DataTables; class TagTable extends TableAbstract { /** * @var bool */ protected $hasActions = true; /** * @var bool */ protected $hasFilter = true; /** * TagTable constructor. * @param DataTables $table * @param UrlGenerator $urlGenerator * @param TagInterface $tagRepository */ public function __construct(DataTables $table, UrlGenerator $urlGenerator, TagInterface $tagRepository) { parent::__construct($table, $urlGenerator); $this->repository = $tagRepository; if (!Auth::user()->hasAnyPermission(['tags.edit', 'tags.destroy'])) { $this->hasOperations = false; $this->hasActions = false; } } /** * {@inheritDoc} */ public function ajax() { $data = $this->table ->eloquent($this->query()) ->editColumn('name', function ($item) { if (!Auth::user()->hasPermission('tags.edit')) { return $item->name; } return Html::link(route('tags.edit', $item->id), $item->name); }) ->editColumn('checkbox', function ($item) { return $this->getCheckbox($item->id); }) ->editColumn('created_at', function ($item) { return BaseHelper::formatDate($item->created_at); }) ->editColumn('status', function ($item) { if ($this->request()->input('action') === 'excel') { return $item->status->getValue(); } return $item->status->toHtml(); }) ->addColumn('operations', function ($item) { return $this->getOperations('tags.edit', 'tags.destroy', $item); }); return $this->toJson($data); } /** * {@inheritDoc} */ public function query() { $query = $this->repository->getModel()->select([ 'id', 'name', 'created_at', 'status', ]); return $this->applyScopes($query); } /** * {@inheritDoc} */ public function columns() { return [ 'id' => [ 'title' => trans('core/base::tables.id'), 'width' => '20px', ], 'name' => [ 'title' => trans('core/base::tables.name'), 'class' => 'text-left', ], 'status' => [ 'title' => trans('core/base::tables.status'), 'width' => '100px', ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'width' => '100px', ], ]; } /** * {@inheritDoc} */ public function buttons() { return $this->addCreateButton(route('tags.create'), 'tags.create'); } /** * {@inheritDoc} */ public function bulkActions(): array { return $this->addDeleteAction(route('tags.deletes'), 'tags.destroy', parent::bulkActions()); } /** * {@inheritDoc} */ public function getBulkChanges(): array { return [ 'name' => [ 'title' => trans('core/base::tables.name'), 'type' => 'text', 'validate' => 'required|max:120', ], 'status' => [ 'title' => trans('core/base::tables.status'), 'type' => 'customSelect', 'choices' => BaseStatusEnum::labels(), 'validate' => 'required|in:' . implode(',', BaseStatusEnum::values()), ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'type' => 'date', ], ]; } }
[+]
..
[-] CategoryTable.php
[edit]
[-] PostTable.php
[edit]
[-] TagTable.php
[edit]