Hi Guys, We have this problem on our website (we use laravel 4.1) that sometimes the session gets ex...
Hi Guys, I have a laravel website which has several subdomains like job.example.com, blog.example.co...
I would simply like to run such query: select * from `users` where SUBSTRING_INDEX(`email`, '@' ,-1)...
Hi Guys, I'm using laravel layouts and templating language for my email views, I need to Inline the...
Hi Guys I have this query: $user = Auth::user(); $user->jobs()->get(); where jobs is a bel...
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.
The community