@extends('backend.master') @section('title', @$title) @section('content') {!! breadcrumb([ 'title' => @$title, route('dashboard') => _trans('common.Dashboard'), '#' => @$title, ]) !!}
@if (hasPermission('mailbox_template_search')) @endif
@if (hasPermission('mailbox_template_create')) {{ _trans('common.Create') }} @endif
@forelse ($items as $key => $item) @empty @endforelse
{{ _trans('common.SL.') }} {{ _trans('common.Title') }} {{ _trans('common.Description') }} {{ _trans('common.Created Date') }} {{ _trans('common.Action') }}
{{ ++$key }} {{ $item['title'] ?? '' }} {!! $item['description'] ?? '' !!} {{ date('Y-m-d h:i:s A', strtotime($item['created_at'])) }}
{{ $no_data }}
@endsection @section('script') @endsection