@extends('layouts.admin') @section('title', 'Report Types') @section('content')

Report Types

Define submission categories and their schedules

{{-- Add type form --}}

Add New Type

@csrf
{{-- Types table --}}

Existing Types

@forelse($types as $t) @empty @endforelse
Name Frequency Deadline Status

{{ $t->name }}

@if($t->description)

{{ $t->description }}

@endif
{{ ucfirst($t->frequency) }} {{ $t->deadline_day ? 'Day '.$t->deadline_day : '—' }} @if($t->is_active) Active @else Disabled @endif
@csrf
No report types yet.
@endsection