PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
ads
/
src
/
Tables
<?php namespace Botble\Ads\Tables; use Auth; use BaseHelper; use Botble\Ads\Models\Ads; use Botble\Ads\Repositories\Interfaces\AdsInterface; use Botble\Base\Enums\BaseStatusEnum; use Botble\Table\Abstracts\TableAbstract; use Html; use Illuminate\Contracts\Routing\UrlGenerator; use RvMedia; use Yajra\DataTables\DataTables; class AdsTable extends TableAbstract { /** * @var bool */ protected $hasActions = true; /** * @var bool */ protected $hasFilter = true; /** * AdsTable constructor. * @param DataTables $table * @param UrlGenerator $urlGenerator * @param AdsInterface $adsRepository */ public function __construct(DataTables $table, UrlGenerator $urlGenerator, AdsInterface $adsRepository) { $this->repository = $adsRepository; $this->setOption('id', 'plugins-ads-table'); parent::__construct($table, $urlGenerator); if (!Auth::user()->hasAnyPermission(['ads.edit', 'ads.destroy'])) { $this->hasOperations = false; $this->hasActions = false; } } /** * {@inheritDoc} */ public function ajax() { $data = $this->table ->eloquent($this->query()) ->editColumn('image', function ($item) { return Html::image(RvMedia::getImageUrl($item->image, 'thumb', false, RvMedia::getDefaultImage()), $item->name, ['width' => 50]); }) ->editColumn('name', function ($item) { if (!Auth::user()->hasPermission('ads.edit')) { return $item->name; } return Html::link(route('ads.edit', $item->id), $item->name); }) ->editColumn('checkbox', function ($item) { return $this->getCheckbox($item->id); }) ->editColumn('expired_at', function ($item) { return BaseHelper::formatDate($item->expired_at); }) ->editColumn('status', function ($item) { return $item->status->toHtml(); }); if (function_exists('shortcode')) { $data = $data->editColumn('key', function ($item) { return generate_shortcode('ads', ['key' => $item->key]); }); } $data = $data->addColumn('operations', function ($item) { return $this->getOperations('ads.edit', 'ads.destroy', $item); }); return $this->toJson($data); } /** * {@inheritDoc} */ public function query() { $query = $this->repository->getModel()->select([ 'ads.id', 'ads.image', 'ads.key', 'ads.name', 'ads.clicked', 'ads.expired_at', 'ads.status', ]); return $this->applyScopes($query); } /** * {@inheritDoc} */ public function columns() { return [ 'id' => [ 'name' => 'ads.id', 'title' => trans('core/base::tables.id'), 'width' => '20px', ], 'image' => [ 'name' => 'ads.image', 'title' => trans('core/base::tables.image'), 'width' => '70px', ], 'name' => [ 'name' => 'ads.name', 'title' => trans('core/base::tables.name'), 'class' => 'text-left', ], 'key' => [ 'name' => 'ads.key', 'title' => trans('plugins/ads::ads.shortcode'), 'class' => 'text-left', ], 'clicked' => [ 'name' => 'ads.clicked', 'title' => trans('plugins/ads::ads.clicked'), 'class' => 'text-left', ], 'expired_at' => [ 'name' => 'ads.expired_at', 'title' => trans('plugins/ads::ads.expired_at'), 'width' => '100px', ], 'status' => [ 'name' => 'ads.status', 'title' => trans('core/base::tables.status'), 'width' => '100px', ], ]; } /** * {@inheritDoc} */ public function buttons() { $buttons = $this->addCreateButton(route('ads.create'), 'ads.create'); return apply_filters(BASE_FILTER_TABLE_BUTTONS, $buttons, Ads::class); } /** * {@inheritDoc} */ public function bulkActions(): array { return $this->addDeleteAction(route('ads.deletes'), 'ads.destroy', parent::bulkActions()); } /** * @return array */ public function getFilters(): array { return $this->getBulkChanges(); } /** * {@inheritDoc} */ public function getBulkChanges(): array { return [ 'ads.name' => [ 'title' => trans('core/base::tables.name'), 'type' => 'text', 'validate' => 'required|max:120', ], 'ads.status' => [ 'title' => trans('core/base::tables.status'), 'type' => 'select', 'choices' => BaseStatusEnum::labels(), 'validate' => 'required|in:' . implode(',', BaseStatusEnum::values()), ], 'ads.expired_at' => [ 'title' => trans('plugins/ads::ads.expired_at'), 'type' => 'date', ], ]; } }
[+]
..
[-] AdsTable.php
[edit]