Name | Value | @endif @foreach($flight_fields as $field) @php $val_field = $flight->field_values->where('name', $field->name)->first(); @endphp |
---|---|---|
{{ $field->name }} | {{ $val_field['value'] ?? '' }} |
{{ Form::open(['url' => '/admin/flights/'.$flight->id.'/fields',
'method' => 'delete',
'class' => 'pjax_form pjax_flight_fields'
]) }}
{{ Form::hidden('field_id', $val_field['id'] ?? null) }}
{{ Form::button('',
['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon',
'onclick' => "return confirm('Are you sure?')"]) }}
{{ Form::close() }}
|
{{ $errors->first('name') }}
{{ $errors->first('value') }}
{{ Form::close() }}