/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables/ProductCollectionTable.php (5682B)
repository = $productCollectionRepository;
if (!Auth::user()->hasAnyPermission([
'product-collections.edit',
'product-collections.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('product-collections.edit')) {
return $item->name;
}
return Html::link(route('product-collections.edit', $item->id), $item->name);
})
->editColumn('image', function ($item) {
return Html::image(RvMedia::getImageUrl($item->image, 'thumb', false, RvMedia::getDefaultImage()),
$item->name, ['width' => 50]);
})
->editColumn('checkbox', function ($item) {
return $this->getCheckbox($item->id);
})
->editColumn('created_at', function ($item) {
return BaseHelper::formatDate($item->created_at);
})
->editColumn('status', function ($item) {
return $item->status->toHtml();
})
->addColumn('operations', function ($item) {
return $this->getOperations(
'product-collections.edit',
'product-collections.destroy',
$item
);
});
return $this->toJson($data);
}
/**
* {@inheritDoc}
*/
public function query()
{
$query = $this->repository->getModel()->select([
'id',
'name',
'image',
'slug',
'created_at',
'status',
]);
return $this->applyScopes($query);
}
/**
* {@inheritDoc}
*/
public function columns()
{
return [
'id' => [
'title' => trans('core/base::tables.id'),
'width' => '20px',
'class' => 'text-left',
],
'image' => [
'title' => trans('core/base::tables.image'),
'width' => '70px',
'class' => 'text-left',
],
'name' => [
'title' => trans('core/base::tables.name'),
'class' => 'text-left',
],
'slug' => [
'title' => trans('core/base::forms.slug'),
'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('product-collections.create'), 'product-collections.create');
}
/**
* {@inheritDoc}
*/
public function bulkActions(): array
{
return $this->addDeleteAction(route('product-collections.deletes'), 'product-collections.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::product-collections.intro');
}
return parent::renderTable($data, $mergeData);
}
}