What is the best way to handle permission issues when deploying Laravel applications ? Deployments t...
Hi, This question might be less laravel but more sql heavy. Please bear with me for a moment. I have...
Hi Guys , I have a prefixed group route with a resource controller. When I list down all my existing...
Hi All, Is it practical to use TDD when doing bug fixes to an existing project. If the project has g...
Hi, I have been banging my head on the wall trying to figure this out : When ever we add a 'use Clas...
Do you have the relationships setup in the Model classes ? Author hasMany books Book has one Author...
Have you checked out view composers ? http://laravel.com/docs/responses#view-composers You can make...
Here is a sample migration : Schema::create('test_table', function(Blueprint $table) { $table...
Ok , I haven't done this before. But you should checkout ; https://github.com/barryvdh/laravel-migra...
Why not wrap the logic in a repository class. You can still consume all your helpers and models.
The Laravel portal for problem solving, knowledge sharing and community building.