Answer the question
In order to leave comments, you need to log in
Sorting output in Laravel 5.6?
There is a table
All this stuff is displayed
<tbody id="quote-section">
@forelse(old('quote_sections', []) as $index => $data)
@include('admin.quotes.quote_sections_row', [
'index' => $index
])
@empty
@foreach($quote->quote_sections as $item)
@include('admin.quotes.quote_sections_row', [
'index' => 'id-' . $item->id,
'field' => $item
])
@endforeach
@endforelse
</tbody>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question