@if (!$crud->ajaxTable())
@foreach ($entries as $k => $entry)
@if ($crud->details_row)
@include('crud::columns.details_row_button')
@endif
{{-- load the view from the application if it exists, otherwise load the one in the package --}}
@foreach ($crud->columns as $column)
@if (!isset($column['type']))
@include('crud::columns.text')
@else
@if(view()->exists('vendor.backpack.crud.columns.'.$column['type']))
@include('vendor.backpack.crud.columns.'.$column['type'])
@else
@if(view()->exists('crud::columns.'.$column['type']))
@include('crud::columns.'.$column['type'])
@else
@include('crud::columns.text')
@endif
@endif
@endif
@endforeach
@if ($crud->buttons->where('stack', 'line')->count())