I have a command that runs in an while(1) loop, which occasionally needs to send an email alert usin...
Hi Chris Looks like a namespacing - try: $this->$channels = \App\Channel::all(); notice the the...
You probably want to look at view composers: https://laravel.com/docs/5.3/views#view-composers
When using Mail, Laravel will use the config defined in /config/mail.php - you will need to make sur...
You shouldn't use a get request for this - I would $_POST the id's to a route, you can then access t...
What do you mean doesn't work? - error? Have you tried echoing out your SQL (echo $obj->toSql())...
The Laravel portal for problem solving, knowledge sharing and community building.