/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables/TaxTable.php (4664B)
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',
],
];
}
}