PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
plugins
/
ecommerce
/
src
/
Tables
<?php namespace Botble\Ecommerce\Tables; use BaseHelper; use Botble\Base\Enums\BaseStatusEnum; use Botble\Ecommerce\Repositories\Interfaces\TaxInterface; use Botble\Table\Abstracts\TableAbstract; use Html; use Illuminate\Contracts\Routing\UrlGenerator; use Illuminate\Support\Facades\Auth; use Yajra\DataTables\DataTables; class TaxTable extends TableAbstract { /** * @var bool */ protected $hasActions = true; /** * @var bool */ protected $hasFilter = true; /** * TaxTable constructor. * @param DataTables $table * @param UrlGenerator $urlGenerator * @param TaxInterface $taxRepository */ public function __construct(DataTables $table, UrlGenerator $urlGenerator, TaxInterface $taxRepository) { parent::__construct($table, $urlGenerator); $this->repository = $taxRepository; if (!Auth::user()->hasAnyPermission(['tax.edit', 'tax.destroy'])) { $this->hasOperations = false; $this->hasActions = false; } } /** * {@inheritDoc} */ public function ajax() { $data = $this->table ->eloquent($this->query()) ->editColumn('title', function ($item) { if (!Auth::user()->hasPermission('tax.edit')) { return $item->name; } return Html::link(route('tax.edit', $item->id), $item->title); }) ->editColumn('percentage', function ($item) { return $item->percentage . '%'; }) ->editColumn('checkbox', function ($item) { return $this->getCheckbox($item->id); }) ->editColumn('status', function ($item) { return $item->status->toHtml(); }) ->editColumn('created_at', function ($item) { return BaseHelper::formatDate($item->created_at); }) ->addColumn('operations', function ($item) { return $this->getOperations('tax.edit', 'tax.destroy', $item); }); return $this->toJson($data); } /** * {@inheritDoc} */ public function query() { $query = $this->repository->getModel()->select([ 'id', 'title', 'percentage', 'priority', 'status', 'created_at', ]); return $this->applyScopes($query); } /** * {@inheritDoc} */ public function columns() { return [ 'id' => [ 'title' => trans('core/base::tables.id'), 'width' => '20px', 'class' => 'text-left', ], 'title' => [ 'title' => trans('core/base::tables.name'), 'class' => 'text-left', ], 'percentage' => [ 'title' => trans('plugins/ecommerce::tax.percentage'), 'class' => 'text-center', ], 'priority' => [ 'title' => trans('plugins/ecommerce::tax.priority'), 'class' => 'text-center', ], 'status' => [ 'title' => trans('core/base::tables.status'), 'class' => 'text-center', ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'width' => '100px', 'class' => 'text-left', ], ]; } /** * {@inheritDoc} */ public function buttons() { return $this->addCreateButton(route('tax.create'), 'tax.create'); } /** * {@inheritDoc} */ public function bulkActions(): array { return $this->addDeleteAction(route('tax.deletes'), 'tax.destroy', parent::bulkActions()); } /** * {@inheritDoc} */ public function getBulkChanges(): array { return [ 'title' => [ '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', ], ]; } }
[-] 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