PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
src
/
Tables
<?php namespace Botble\Ecommerce\Tables; use BaseHelper; use Botble\Ecommerce\Repositories\Interfaces\CustomerInterface; use Botble\Table\Abstracts\TableAbstract; use Html; use Illuminate\Contracts\Routing\UrlGenerator; use Illuminate\Support\Facades\Auth; use Yajra\DataTables\DataTables; class CustomerTable extends TableAbstract { /** * @var bool */ protected $hasActions = true; /** * @var bool */ protected $hasFilter = true; /** * CustomerTable constructor. * @param DataTables $table * @param UrlGenerator $urlGenerator * @param CustomerInterface $customerRepository */ public function __construct(DataTables $table, UrlGenerator $urlGenerator, CustomerInterface $customerRepository) { parent::__construct($table, $urlGenerator); $this->repository = $customerRepository; if (!Auth::user()->hasAnyPermission(['customers.edit', 'customers.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('customers.edit')) { return $item->name; } return Html::link(route('customers.edit', $item->id), $item->name); }) ->editColumn('email', function ($item) { return $item->email; }) ->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 $this->getOperations('customers.edit', 'customers.destroy', $item); }); return $this->toJson($data); } /** * {@inheritDoc} */ public function query() { $query = $this->repository->getModel()->select([ 'id', 'name', 'email', 'avatar', 'created_at', ]); 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::forms.name'), 'class' => 'text-left', ], 'email' => [ 'title' => trans('plugins/ecommerce::customer.name'), 'class' => 'text-left', ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'width' => '100px', 'class' => 'text-left', ], ]; } /** * {@inheritDoc} */ public function buttons() { return $this->addCreateButton(route('customers.create'), 'customers.create'); } /** * {@inheritDoc} */ public function bulkActions(): array { return $this->addDeleteAction(route('customers.deletes'), 'customers.destroy', parent::bulkActions()); } /** * {@inheritDoc} */ public function getBulkChanges(): array { return [ 'name' => [ 'title' => trans('core/base::tables.name'), 'type' => 'text', 'validate' => 'required|max:120', ], 'email' => [ 'title' => trans('core/base::tables.email'), 'type' => 'text', 'validate' => 'required|max:120', ], 'created_at' => [ 'title' => trans('core/base::tables.created_at'), 'type' => 'date', ], ]; } /** * {@inheritDoc} */ public function renderTable($data = [], $mergeData = []) { if ($this->query()->count() === 0 && $this->request()->input('filter_table_id') !== $this->getOption('id') ) { return view('plugins/ecommerce::customers.intro'); } return parent::renderTable($data, $mergeData); } /** * {@inheritDoc} */ public function getDefaultButtons(): array { return [ 'export', 'reload', ]; } }
[-] 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