Hi Guys, I need to get the view data i found the View::getData() method in the api but i can not cal...
Hi Guys, I have a query which it's toSql result is: select * from `jobs` left join `locations` on `j...
Ok I found a solution myself, It's as simple as this: Auth::user()->jobs() ->order...
jarektkaczyk said: Use join because eager loading runs 2nd query, so you'll end up with jobs ordere...
revati said: $view = View::make('view', $data); $viewData = $view->getData(); This should work....
thepsion5 said: Specify a table alias in your join, like so (using jazpur's example): $collection =...
The Laravel portal for problem solving, knowledge sharing and community building.