/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables/BrandTable.php (5354B)
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);
}
}