-2
Is there any way to fetch the ID (to store in the BD) and the name for the user to select ?
<option selected>Escolher Capitulo</option>
@foreach($capitulos as $cap)
<option class="form-control" id="id_capitulo" name="id_capitulo">
{{$cap->capitulo}}
</option>
@endforeach
</select>
Thank you!