I want to create a select box like the one below using illuminate\\html :
In your controller, add,
public function create() { $items = array( 'itemlist' => DB::table('itemtable')->get() ); return view('prices.create', $items); }
And in your view, use
@foreach($itemlist as $item) {{ $item->name }} @endforeach
In select box, it will be like this,
item1 item2 item3 ...