insulae
insulae
I have a column generated with a very large query which I then need to process again in another column and I don't want to repeat the query. Is there...
The Query(): ``` return Petition::query() ->groupBy('person_id') ->where('type_id','2'); ``` I have a column like this: ``` NumberColumn::raw('SUM(cant) AS cant_total') ->filterable() ->enableSummary() ->label('Total Cant.'), ``` If I try to use the filter...
I have a table with an editable column ->editable(). but that column has the unique property, how can I do a try catch(QueryException $e) I want to show an "alert"...