Skip to content

Instantly share code, notes, and snippets.

View ipproyectosysoluciones's full-sized avatar
🏠
Trabajando desde casa

Bladimir Gerson Parra Bermudez ipproyectosysoluciones

🏠
Trabajando desde casa
View GitHub Profile
<?php
public function coursesJson () {
if(request()->ajax()) {
$vueTables = new EloquentVueTables;
/*************************************OBTENEMOS LA FK Y LA RELACIÓN*************************************/
$data = $vueTables->get(new Course, ['courses.id', 'name', 'status', 'teacher_id'], ['teacher']);
return response()->json($data);
}
return abort(401);