@extends('layouts.division') @section('title', 'Dashboard') @section('content')
Welcome back, {{ auth()->user()->name }}
{{ $stats['pending'] }}
Pending
{{ $stats['verified'] }}
Verified
{{ $stats['rejected'] }}
Rejected
| Title | Submitted | Status |
|---|---|---|
| {{ $s->title }} | {{ $s->submitted_at?->format('M d, Y') ?? '—' }} | @if($s->status === 'pending') Pending @elseif($s->status === 'verified') Verified @else Rejected @endif |
| No submissions yet. Submit your first one → | ||