I have a multi-tenant application using {company}.domain.tld. Is there a way for me to inject the co...
As part of my app I want to be able to track if emails have been opened, to do this I'm embedding a...
I have several models which share a similar schema in the database, is there a way I can create a pa...
You can loop through results as below. You can then compare the show_year against the previous itera...
{{ Form::model($model) }} Any form inputs inside the form that match the fields of the model will a...
Route::bind('user', function($value, $route) { return User::where('XXX_ID', $value)->firstOrF...
Assuming you've setup one of the Eloquent relations you can use the following. http://laravel.com/do...
The Laravel portal for problem solving, knowledge sharing and community building.