@if ($crud->model->translationEnabled())
@endif
@foreach ($crud->columns() as $column)
@endforeach
{!! $column['label'] !!}:
|
@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
|
@if ($crud->buttons()->where('stack', 'line')->count())
@if($crud->hasAccess('update') && !$crud->model->translationEnabled())
{{ trans('backpack::crud.edit') }}
@else
@include('crud::inc.button_stack', ['stack' => 'line'])
@endif
@endif