/home/techb158/immovalet.com/platform/plugins/testimonial/src/Tables
Edit: /home/techb158/immovalet.com/platform/plugins/testimonial/src/Tables/TestimonialTable.php (3981B)
repository = $testimonialRepository;
if (!Auth::user()->hasAnyPermission(['testimonial.edit', 'testimonial.destroy'])) {
$this->hasOperations = false;
$this->hasActions = false;
}
}
/**
* {@inheritDoc}
*/
public function ajax()
{
$data = $this->table
->eloquent($this->query())
->editColumn('image', function ($item) {
return $this->displayThumbnail($item->image, ['width' => 70]);
})
->editColumn('name', function ($item) {
if (!Auth::user()->hasPermission('testimonial.edit')) {
return $item->name;
}
return Html::link(route('testimonial.edit', $item->id), $item->name);
})
->editColumn('checkbox', function ($item) {
return $this->getCheckbox($item->id);
})
->editColumn('created_at', function ($item) {
return date_from_database($item->created_at, config('core.base.general.date_format.date'));
})
->addColumn('operations', function ($item) {
return table_actions('testimonial.edit', 'testimonial.destroy', $item);
});
return $this->toJson($data);
}
/**
* {@inheritDoc}
*/
public function query()
{
$query = $this->repository->getModel()->select([
'id',
'name',
'created_at',
'image',
]);
return $this->applyScopes($query);
}
/**
* {@inheritDoc}
*/
public function columns()
{
return [
'id' => [
'title' => trans('core/base::tables.id'),
'width' => '20px',
],
'image' => [
'title' => trans('core/base::tables.image'),
'width' => '100px',
],
'name' => [
'title' => trans('core/base::tables.name'),
'class' => 'text-left',
],
'created_at' => [
'title' => trans('core/base::tables.created_at'),
'width' => '100px',
],
];
}
/**
* {@inheritDoc}
*/
public function buttons()
{
return $this->addCreateButton(route('testimonial.create'), 'testimonial.create');
}
/**
* {@inheritDoc}
*/
public function bulkActions(): array
{
return $this->addDeleteAction(route('testimonial.deletes'), 'testimonial.destroy', parent::bulkActions());
}
/**
* {@inheritDoc}
*/
public function getBulkChanges(): array
{
return [
'name' => [
'title' => trans('core/base::tables.name'),
'type' => 'text',
'validate' => 'required|max:120',
],
'created_at' => [
'title' => trans('core/base::tables.created_at'),
'type' => 'date',
],
];
}
}