Hello guys, How can I access methods of model in relationships? class B extends Eloquent { public...
$headlines = Post::whereHas('categories', function($query) { $query->where('name', '=', 'headlin...
Hi, I'm working on application that requires managing several databases from one administration inte...
I'm writing a system around an existing database structure using Laravel 4.1. The current system is...
Hi, I've tried to figure out if this is possible, but can't figure out how if it's even possible. Le...
Hi, I have two tables that look something like this: # Author # ID Name Slug 1 Denni...
I'm trying to access a Model and Controller from a custom library class. I have created an app/lib f...
Howdy! When I try to use a whereHas within a grouped where class, I get an error. Any ideas? $activi...
Is there a way to set a transient property for an Eloquent model that won't save to the database? Fo...
I have a route like this: www.mysite.com/agenda/2014/08/16?tags=entertainement,sport,information&...
##Problem I have an eloquent model "Invoice" that hasMany "InvoiceTicket" that b...
Hello everyone, I'm an absolute beginner to Laravel, and this is my first thread, so I hope I'm not...
i have set up users and roles table with a pivot table and i need to check, if logged user has admin...
Hey guys. I just began to work with laravel. Sorry for bad English. So I've got a table named 'reque...
Let's say, I have the following strong entities (and their attributes): Post (title, content) Tag...
DB::table('users') ->join('contacts', function($join) { $join->o...
Suppose you have a simple products table: id | name | category ....................... 1 | prod1 |...
Hello there, i'm new in laravel, also in MVC development and i want to ask for suggestion about the...
Hi, I have two models : Sale.php <?php class Sale extends Eloquent { public function groups() {...
Hello, I'm trying to load an Eloquent model with a polymorphic relationship. I want to get Photos th...
Solutions given in the past year. Excluding solutions from thread authors.
Select a tag below to filter the results
The Laravel portal for problem solving, knowledge sharing and community building.
The community