something like... in the view
{{Form::open(array('url'=>'expense/add', 'method' => 'POST', 'class' => 'form-signin'), array('role'=>'form'))}}
<select id="expense_category_id" class="form-control">
@foreach($data['categories'] as $category)
<option value="{{$category->id}}">{{$category->name}}</option>
@endforeach
{{Form::submit('submit', array('class'=>'btn btn-lg btn-primary btn-block'))}}
{{Form::close()}}
Controller:
$data['categories'] = Category::lists('name', 'id');
If you are using the attribute Category model controller:
$data['categories'] = Category::get()->lists('name', 'id');
view:
{{ Form::select('expense_category_id', $data['categories'], null, array('class' => 'form-control') }}
For laravel5.3 use pluck.
$data['categories'] = Category::all()->pluck('name', 'id');
Reference
You can try.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With