Skip to content

Instantly share code, notes, and snippets.

@elton182
Created November 29, 2016 14:11
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 elton182/a2d4dc90ec6a8a3c1ba403aca3172ec8 to your computer and use it in GitHub Desktop.
Save elton182/a2d4dc90ec6a8a3c1ba403aca3172ec8 to your computer and use it in GitHub Desktop.
Select com laravel
<select id="subject_id" name="subject_id" placeholder="Selecione um assunto..." >
<option value="">Selecione um assunto...</option>
@foreach ($subjects as $subject)
<option value="{{$subject->id}} ">
{{$subject->description}}
</option>
@endforeach
</select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment