/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables/CustomerTable.php (4694B)
repository = $customerRepository;
if (!Auth::user()->hasAnyPermission(['customer.edit', 'customer.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('customer.edit')) {
return $item->name;
}
return Html::link(route('customer.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('customer.edit', 'customer.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('customer.create'), 'customer.create');
}
/**
* {@inheritDoc}
*/
public function bulkActions(): array
{
return $this->addDeleteAction(route('customer.deletes'), 'customer.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',
];
}
}