@extends('contentNavbarLayout') @section('title', 'Archive') @section('content')

Deleted Record Types

@if(session('success'))
{{ session('success') }}
@endif @if($deletedTables->isEmpty())
No deleted record types found.
@else @hasPermission('archive.recover') @endhasPermission @foreach ($deletedTables as $index => $table) @hasPermission('archive.recover') @endhasPermission @endforeach
No. Deleted Record Type Date DeletedActions
{{ $index + 1 }} {{ $table->name }} {{ \Carbon\Carbon::parse($table->created_at)->format('d M Y, h:i A')}}
@csrf
@endif
@endsection