@extends('backpack::layout')
@section('content-header')
{{ $crud->entity_name_plural }}
{{ ucfirst(trans('backpack::crud.preview')).' '.$crud->entity_name }}.
@endif
{{ $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 |
{{ trans('backpack::crud.actions') }} | @include('crud::inc.button_stack', ['stack' => 'line']) |