@extends('garage.layouts.app') @section('title', 'Deleted — '.$def['label']) @section('content')

Deleted {{ $def['label'] }}

Restore a record to make it active again in lists and searches.

All categories
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@if($search !== '') @endif
@forelse($rows as $row) @empty @endforelse
Record Details Deleted at Actions
{{ $row->title }} {{ $row->subtitle ?: '—' }} {{ $row->deleted_at ? \Illuminate\Support\Carbon::parse($row->deleted_at)->format('d M Y H:i') : '—' }}
@csrf
@if($search !== '') No deleted records match your search. @else No deleted {{ strtolower($def['label']) }} in this garage. @endif
@if($rows->hasPages())
{{ $rows->links() }}
@endif
@endsection