@extends('admin.layouts.modal') {{-- Content --}} @section('content') {{-- Choose Columns Form --}}
@if (!empty($rows)) @foreach ($rows as $k => $row) @if (!empty($row)) @if ($k === 0) @foreach ($row as $i => $field) @endforeach @endif @foreach ($row as $field) @endforeach @endif @endforeach
{{ $field }}
@endif {{ $errors->first('columns', ':message') }}

Using one of the 'new' options, requires the first row to contain headings. The 'new' option will not output the desired result otherwise.
Cancel
@stop