I have a command that runs in an while(1) loop, which occasionally needs to send an email alert usin...
Specify the primary key in your model: protected $primaryKey = 'id_user'; https://laravel.com/docs/...
"But what if I go to 'url/section' without any other parameters? Do I need to make a route with...
I would probably specify them all - although if you have a ton of routes in a dashboard you might wa...
I would probably use two different view files - one for ajax, one for the non ajax, so in your contr...
$users = User::whereIn('users', $employes) ->get(); https://laravel.com/docs/5.3/queries
The Laravel portal for problem solving, knowledge sharing and community building.