0
votes
0answers
59 views

Laravel array of conditions

I'm using laravel version 3 and some of my ORM's share similar conditions such as deleted = 0. I have stored these in an array called standard conditions like so: $standard_conditions = array( ...
1
vote
2answers
123 views

How to apply conditions to a with relationship in laravel 3?

I have a pair of objects in laravel, pages and contents. I have setup a relationship function, and include, which includes contents based on page_id. I want to apply other conditions such as where ...