PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Tables
<?php namespace Botble\Ecommerce\Tables; use BaseHelper; use Botble\Base\Enums\BaseStatusEnum; use Botble\Ecommerce\Repositories\Interfaces\BrandInterface; use Botble\Table\Abstracts\TableAbstract; use Html; use Illuminate\Contracts\Routing\UrlGenerator; use Illuminate\Support\Facades\Auth; use Yajra\DataTables\DataTables; class BrandTable extends TableAbstract { /** * @var bool */ protected $hasActions = true; /** * @var bool */ protected $hasFilter = true; /** * BrandTable constructor. * @param DataTables $table * @param UrlGenerator $urlGenerator * @param BrandInterface $brandRepository */ public function __construct(DataTables $table, UrlGenerator $urlGenerator, BrandInterface $brandRepository) { parent::__construct($table, $urlGenerator); $this->repository = $brandRepository; if (!Auth::user()->hasAnyPermission(['brands.edit', 'brands.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('brands.edit')) { return $item->name; } return Html::link(route('brands.edit', $item->id), $item->name); }) ->editColumn('checkbox', function ($item) { return $this->getCheckbox($item->id); }) ->editColumn('logo', function ($item) { return $this->displayThumbnail($item->logo); }) ->editColumn('created_at', function ($item) { return BaseHelper::formatDate($item->created_at); }) ->editColumn('is_featured', function ($item) { return $item->is_featured ? trans('core/base::base.yes') : trans('core/base::base.no'); }) ->editColumn('status', function ($item) { return $item->status->toHtml(); }) ->addColumn('operations', function ($item) { return $this->getOperations('brands.edit', 'brands.destroy', $item); }); return $this->toJson($data); } /** * {@inheritDoc} */ public function query() { $query = $this->repository->getModel()->select([ 'id', 'name', 'created_at', 'status', 'is_featured', 'logo', ]); return $this->applyScopes($query); } /** * {@inheritDoc} */ public function columns() { return [ 'id' => [ 'title' => trans('core/base::tables.id'), 'width' => '20px', 'class' => 'text-left', ], 'name' => [ 'title' => trans('core/base::tables.name'), 'class' => 'text-left', ], 'logo' => [ 'title' => trans('plugins/ecommerce::brands.logo'), 'class' => 'text-left', ], 'is_featured' => [ 'title' => trans('core/base::tables.is_featured'), 'class' => 'text-left', ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'width' => '100px', 'class' => 'text-left', ], 'status' => [ 'title' => trans('core/base::tables.status'), 'width' => '100px', 'class' => 'text-left', ], ]; } /** * {@inheritDoc} */ public function buttons() { return $this->addCreateButton(route('brands.create'), 'brands.create'); } /** * {@inheritDoc} */ public function bulkActions(): array { return $this->addDeleteAction(route('brands.deletes'), 'brands.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' => 'select', 'choices' => BaseStatusEnum::labels(), 'validate' => 'required|in:' . implode(',', BaseStatusEnum::values()), ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'type' => 'date', ], ]; } /** * {@inheritDoc} */ public function renderTable($data = [], $mergeData = []) { if ($this->query()->count() === 0 && !$this->request()->wantsJson() && $this->request()->input('filter_table_id') !== $this->getOption('id') ) { return view('plugins/ecommerce::brands.intro'); } return parent::renderTable($data, $mergeData); } }
[-] CustomerTable.php
[edit]
[-] ProductTable.php
[edit]
[-] ProductAttributeSetsTable.php
[edit]
[+]
..
[-] ProductTagTable.php
[edit]
[-] ProductLabelTable.php
[edit]
[-] ProductCategoryTable.php
[edit]
[-] OrderTable.php
[edit]
[-] ReviewTable.php
[edit]
[-] DiscountTable.php
[edit]
[-] TaxTable.php
[edit]
[-] BrandTable.php
[edit]
[-] FlashSaleTable.php
[edit]
[-] OrderIncompleteTable.php
[edit]
[-] ProductCollectionTable.php
[edit]
[+]
Reports