@extends('layouts.app')
@section('page-title', 'Discontinued Documents')
@section('content')
@php $typeLabels = \App\Models\Folder::TYPES; @endphp
Export CSV
Export PDF
{{-- Type filter --}}
@foreach($typeLabels as $key => $label)
@php
$dot = match($key) {
'controlled_documents' => 'bg-blue-500',
'records' => 'bg-emerald-500',
'bulletins' => 'bg-amber-500',
default => 'bg-surface-400',
};
$badgeActive = match($key) {
'controlled_documents' => 'bg-blue-100 text-blue-700',
'records' => 'bg-emerald-100 text-emerald-700',
'bulletins' => 'bg-amber-100 text-amber-700',
default => 'bg-surface-200 text-surface-700',
};
@endphp
@endforeach
{{-- Search --}}
{{-- Loading --}}
{{-- Empty — no discontinued docs at all --}}
No discontinued documents
Documents marked as discontinued will appear here.
{{-- Empty — filtered/searched --}}
No results found
Try a different filter or search term.
{{-- Table --}}
| Doc No. |
Title |
Type |
Ver. |
Discontinued |
By |
Actions |
|
|
|
|
|
|
|
{{-- View --}}
{{-- Restore --}}
{{-- Delete --}}
|
{{-- Pagination --}}
@endsection