@extends('admin/layouts/admin') @section('title', __($translatePrefix .'.title')) @section('content')
@include('admin/shared/alerts')

{{ __($translatePrefix . '.title') }}

{{ __($translatePrefix. '.subheading') }}

{{ __('admin.create') }} @if (!empty($filters))
@endif
@if (count($items) == 0) @endif @foreach($items as $item) @endforeach
#
{{ __('global.name') }}
{{ __('global.created') }}
{{ __('global.actions') }}

{{ __('global.no_results') }}

{{ $item->id }} {{ $item->name }} {{ $item->created_at != null ? $item->created_at->format('d/m/y') : 'None' }} {{ __('global.show') }}
@method('DELETE') @csrf
{{ $items->links('admin.shared.layouts.pagination') }}
@endsection