@extends('layouts.app', ['title' => __($title)])
@section('content')
@yield('customheading')
@include('partials.flash')
@yield('contenttop')
@if (isset($iscontent))
@yield('cardbody')
@else
@if(count($items))
@if(isset($custom_table))
@yield('thead')
@else
@if(isset($fields))
@foreach ($fields as $field)
{{ __( $field['name'] ) }} |
@endforeach
{{ __('crud.actions') }} |
@else
@yield('thead')
@endif
@endif
@yield('tbody')
@endif
@endif
@include('layouts.footers.auth')
@endsection