File: /home/xedaptot/work.naniguide.com/app/DataTables/ClientContactsDataTable.php
<?php
namespace App\DataTables;
use App\DataTables\BaseDataTable;
use App\Helper\Common;
use App\Models\ClientContact;
use Carbon\Carbon;
use Yajra\DataTables\Html\Button;
use Yajra\DataTables\Html\Column;
class ClientContactsDataTable extends BaseDataTable
{
private $editClientPermission;
private $deleteClientPermission;
public function __construct()
{
parent::__construct();
$this->editClientPermission = user()->permission('edit_client_contacts');
$this->deleteClientPermission = user()->permission('delete_client_contacts');
}
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
return datatables()
->eloquent($query)
->addColumn('check', fn($row) => $this->checkBox($row))
->addColumn('action', function ($row) {
$action = '<div class="task_view">
<div class="dropdown">
<a class="task_view_more d-flex align-items-center justify-content-center dropdown-toggle" type="link"
id="dropdownMenuLink-' . $row->id . '" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="icon-options-vertical icons"></i>
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuLink-' . $row->id . '" tabindex="0">';
if ($this->editClientPermission == 'all' || ($this->editClientPermission == 'added' && user()->id == $row->added_by) || ($this->editClientPermission == 'both' && user()->id == $row->added_by)) {
$action .= '<a class="dropdown-item openRightModal" href="' . route('client-contacts.edit', [$row->id]) . '">
<i class="fa fa-edit mr-2"></i>
' . trans('app.edit') . '
</a>';
}
if ($this->deleteClientPermission == 'all' || ($this->deleteClientPermission == 'added' && user()->id == $row->added_by) || ($this->deleteClientPermission == 'both' && user()->id == $row->added_by)) {
$action .= '<a class="dropdown-item delete-table-row" href="javascript:;" data-user-id="' . $row->id . '">
<i class="fa fa-trash mr-2"></i>
' . trans('app.delete') . '
</a>';
}
$action .= '</div>
</div>
</div>';
return $action;
})
->editColumn('contact_name', fn($row) => $row->contact_name)
->editColumn('title', fn($row) => $row->title)
->editColumn('created_at', fn($row) => Carbon::parse($row->created_at)->translatedFormat($this->company->date_format))
->addIndexColumn()
->smart(false)
->setRowId(fn($row) => 'row-' . $row->id)
->rawColumns(['contact_name', 'action', 'check']);
}
/**
* @param ClientContact $model
* @return ClientContact|\Illuminate\Database\Eloquent\Builder
*/
public function query(ClientContact $model)
{
$request = $this->request();
return $model->where('user_id', $request->clientID);
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
$dataTable = $this->setBuilder('clients-table')
->parameters([
'initComplete' => 'function () {
window.LaravelDataTables["clients-table"].buttons().container()
.appendTo( "#table-actions")
}',
'fnDrawCallback' => 'function( oSettings ) {
//
}',
/* 'buttons' => ['excel'] */
]);
if (canDataTableExport()) {
$dataTable->buttons(Button::make(['extend' => 'excel', 'text' => '<i class="fa fa-file-export"></i> ' . trans('app.exportExcel')]));
}
return $dataTable;
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
return [
'check' => [
'title' => '<input type="checkbox" name="select_all_table" id="select-all-table" onclick="selectAllTable(this)">',
'exportable' => false,
'orderable' => false,
'searchable' => false
],
'#' => ['data' => 'DT_RowIndex', 'orderable' => false, 'searchable' => false, 'visible' => false, 'title' => '#'],
__('app.title') => ['data' => 'title', 'name' => 'title', 'title' => __('app.title')],
__('app.name') => ['data' => 'contact_name', 'name' => 'contact_name', 'title' => __('app.name')],
__('app.email') => ['data' => 'email', 'name' => 'email', 'title' => __('app.email')],
__('app.phone') => ['data' => 'phone', 'name' => 'phone', 'title' => __('app.phone')],
__('app.createdAt') => ['data' => 'created_at', 'name' => 'created_at', 'title' => __('app.createdAt')],
Column::computed('action', __('app.action'))
->exportable(false)
->printable(false)
->orderable(false)
->searchable(false)
->addClass('text-right pr-20')
];
}
}