I am having some trouble figuring out how to validate that an entire eager loaded query is valid bef...
I am trying to make it so if a user clicks on a protected link, they get forwarded to a login / regi...
I am setting up a store for my client. They use Shopify... So in order to get login working for cust...
The 'sometimes' part might make it so that if you do not select anything, it treats it as not requir...
$cities = Cities::all(); //Not sure what you use to build your list $null = 'Select one'; $turn_ob...
{{ Form::select('city_mail_id', $cities, '2') }} //You forgot to close the method. As for the nulla...
http://laravel.com/api/source-class-Illuminate.Html.FormBuilder.html#365-403 So from your code, rep...
In your query you can try and use: ->lists('name', 'id'); http://laravel.com/docs/queries#selec...
The Laravel portal for problem solving, knowledge sharing and community building.
The community