In Laravel it is possible to make a callback at the time of a query.
For example:
$q = Model::where(function($query){
$query->where(...);
});
I would like to do something like this, but with having () , since I need to check if a gi...
asked by
24.05.2016 / 16:07