@extends('layouts.admin') @section('title', 'Review Proposal') @section('page-title', 'Proposal Review Console') @section('content')
Status: {{ ucfirst($proposal->status) }} 📅 Sub: {{ $proposal->created_at->format('d M Y') }}
{{-- Proposal Header --}}
{{ strtoupper(substr($proposal->user->name, 0, 2)) }}

{{ $proposal->title }}

👤 {{ $proposal->user->name }} ({{ $proposal->user->nim }})🎓 {{ $proposal->user->prodi ?? '-' }}📍 {{ $proposal->village->name }}, Kec. {{ $proposal->village->district }}
⬇ Buka PDF
@if($proposal->notes)

Catatan Review Sebelumnya

{{ $proposal->notes }}

@endif
{{-- Review Panel --}}

📋 Panel Keputusan Review

@csrf
@endsection