доброе утро, у меня возникает следующая ошибка при вставке данных в мою таблицу данных.
это мой запрос от моего контроллера
if(request()->ajax()) {
$user = auth()->id();
$queja = Queja::join("reportes","reportes.id_reporte","=","quejas.id_reporte")->where('reportes.id','=',$user)->orderBy('reportes.fecha','asc')->get();
return datatables()->of($queja)
->addColumn('action', function($data){
$button = '
<div class="btn-group text-right">
<button type="button" class="btn btn-success br2 btn-xs fs12 dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> OPCIONES
<span class="caret ml5"></span>
</button>
<ul class="dropdown-menu" role="menu">
<li>
<a id="'.$data->id_queja.'" href="#">VISUALIZAR</a>
</li>
<li>
</ul>
</div>';
return $button;
})
->rawColumns(['action'])
->addIndexColumn()
->make(true);
}
return view('personal.listar.listar_quejasPersonal');
это мой ajax
$(document).ready( function () {
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
$('#laravel_datatable').DataTable({
processing: true,
serverSide: true,
ajax: {
url: "{{ route('Quejas.Lista.Personal') }}",
type: 'GET',
},
columns: [
{ data: 'folio', name: 'reportes.folio', width: '10px' },
{ data: 'asunto', name: 'reportes.asunto' },
{ data: 'depto_area', name: 'reportes.depto_area' },
{ data: 'ubicacion', name: 'reportes.ubicacion' },
{ data: 'nom_trabajador', name: 'quejas.nom_trabajador' },
{ data: 'fecha_vencimiento', name: 'quejas.fecha_vencimiento' },
{ data: 'status_queja', name: 'quejas.status_queja', width: '10px' },
{data: 'action', name: 'action', width: '10px' , orderable: false},
],
order: [[0, 'desc']]
});
/* When user click add user button */
/* When click edit user */
});
и это мой .blade
<div class="panel-body">
<table class="table admin-form theme-warning tc-checkbox-1 fs13" id="laravel_datatable" width="100%" >
<thead>
<tr class="bg-light">
<th class="text-center">FOLIO</th>
<th class="">ASUNTO</th>
<th class="">DEPTO/AREA</th>
<th class="">NOM. TRABAJADOR</th>
<th class="">UBICACION</th>
<th class="">FECHA & HORA</th>
<th class="text-right">STATUS</th>
<th class="text-right">ACCIONES</th>
</tr>
</thead>
</table>
</div>
Когда я ввожу одну запись, она показывает меня правильно, но когда у меня есть больше записей, она выдает следующую ошибку: enter описание изображения здесь введите описание изображения здесь