83 lines
2.6 KiB
PHP
83 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\DataTables;
|
|
|
|
use Spatie\Permission\Models\Role;
|
|
use Yajra\DataTables\Html\Button;
|
|
use Yajra\DataTables\Html\Column;
|
|
use Yajra\DataTables\Html\Editor\Editor;
|
|
use Yajra\DataTables\Html\Editor\Fields;
|
|
use Yajra\DataTables\Services\DataTable;
|
|
|
|
class RolesDataTable extends DataTable
|
|
{
|
|
|
|
public function dataTable($query) {
|
|
return datatables()
|
|
->eloquent($query)
|
|
->addColumn('action', function ($data) {
|
|
return view('user::roles.partials.actions', compact('data'));
|
|
})
|
|
->addColumn('permissions', function ($data) {
|
|
return view('user::roles.partials.permissions', [
|
|
'permissions' => $data->getPermissionNames()
|
|
]);
|
|
});
|
|
|
|
}
|
|
|
|
public function query(Role $model) {
|
|
return $model->newQuery()->with(['permissions' => function ($query) {
|
|
$query->select('name')->get();
|
|
}])->where('name', '!=', 'Super Admin');
|
|
}
|
|
|
|
public function html() {
|
|
return $this->builder()
|
|
->setTableId('roles-table')
|
|
->columns($this->getColumns())
|
|
->minifiedAjax()
|
|
->dom("<'row'<'col-md-3'l><'col-md-5 mb-2'B><'col-md-4'f>> .
|
|
'tr' .
|
|
<'row'<'col-md-5'i><'col-md-7 mt-2'p>>")
|
|
->orderBy(1)
|
|
->buttons(
|
|
Button::make('excel')
|
|
->text('<i class="bi bi-file-earmark-excel-fill"></i> Excel'),
|
|
Button::make('print')
|
|
->text('<i class="bi bi-printer-fill"></i> Print'),
|
|
Button::make('reset')
|
|
->text('<i class="bi bi-x-circle"></i> Reset'),
|
|
Button::make('reload')
|
|
->text('<i class="bi bi-arrow-repeat"></i> Reload')
|
|
);
|
|
}
|
|
|
|
protected function getColumns() {
|
|
return [
|
|
Column::make('id')
|
|
->addClass('text-center')
|
|
->addClass('align-middle'),
|
|
|
|
Column::make('name')
|
|
->addClass('text-center')
|
|
->addClass('align-middle'),
|
|
|
|
Column::computed('permissions')
|
|
->addClass('text-center')
|
|
->addClass('align-middle')
|
|
->width('700px'),
|
|
|
|
Column::computed('action')
|
|
->exportable(false)
|
|
->printable(false)
|
|
->addClass('text-center')
|
|
->addClass('align-middle')
|
|
];
|
|
}
|
|
|
|
protected function filename() {
|
|
return 'Roles_' . date('YmdHis');
|
|
}
|
|
}
|