I am builing a rather simple page listing UK pubs. There are over 200,000 of them.
I have written a straightforward blade template with datatables being called by ajax to a route in a controller DatatablesController. All works well but I want to add edit and view buttons, so here is my controller function:
public function getPubs(Request $request)
{
$model = Pub::query();
return DataTables::eloquent($model)
->addColumn('action', function($row){
$btn = '<a href="javascript:void(0)" class="edit btn btn-primary btn-sm">View</a>';
return $btn;
})
->addColumn('edit', function($row){
$editbtn = '<a href="javascript:void(0)" class="edit btn btn-primary btn-sm">edit</a>';
return $editbtn;
})
->make(true);
}
The problem is the edit column is returning an incorrect string. Here is the end of the ajax result of the first item:
"action": "<a href=\"javascript:void(0)\" class=\"edit btn btn-primary btn-sm\">View</a>",
"edit": "<a href="javascript:void(0)" class="edit btn btn-primary btn-sm">edit</a>"
I cannot see any reason in my method why this is not correctly returned.
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire