0
I cannot send the selected data to the request:
<select name="tipo_id" class="form-control col-md-3 col-xs-12">
<option value=""></option>
@foreach ($tipos as $tipo )
<option name="tipo_id" value="{{$tipo->id}}">{{$tipo->description}}</option>
@endforeach
Error:
SQLSTATE[HY000]: General error: 1364 Field 'tipo_id' doesn't have a default value (SQL: insert into `titulos` (`valor`, `updated_at`, `created_at`) values (200, 2019-02-26 17:01:06, 2019-02-26 17:01:06))
Try to take out the attribute
name
of your choice– ayrton