Hi, new tutorials on upcoming Laravel 4.3 are available on codeheaps.com: Laravel 4.3: New Awesome...
##What is guardian? Guardian package for Laravel provides an easy interface to manage Role Based Acc...
Sorry :(, i misunderstood the problem, you are right :)
try this: $user = User::find(10); $profile = $user->profile(); $profile->name = 'Steven'; $use...
You can use property mutators inside your models: public function setCompanyIdAttribute($cid) {...
Make sure table is unguarded, and you need multiple insert calls to insert multiple rows. Or you can...
Routes are First In First Out, sometimes the order of registering them matters make sure your deep r...
The Laravel portal for problem solving, knowledge sharing and community building.