Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created December 7, 2015 05:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evercode1/3ff2e798ae93ebafbcb9 to your computer and use it in GitHub Desktop.
Save evercode1/3ff2e798ae93ebafbcb9 to your computer and use it in GitHub Desktop.
categories
<div class="form-group">
<label>Category:</label><br>
<select class="form-control input-lg" name="category_id" id="category_id">
<option value="">Select Category</option>
@foreach($categories as $category)
<option value="{{ $category->id }}"> {{$category->category_name}}</option>
@endforeach
</select>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment