@extends('layouts.app') @section('title', $post->code . ' — ' . $post->title) @section('breadcrumb') Dashboard Posts {{ $post->code }} @endsection @push('styles') @endpush @section('content')
{{-- ── Post information ─────────────────────────────────────── --}}

Post information

@php $statusTone = match ($post->status) { 'active' => 's-success', 'closed' => 's-danger', default => 's-neutral', }; @endphp {{ $post->status_label }}
Exam login
@if($post->exam_login_enabled) Enabled @if($post->exam_login_enabled_at)
since {{ $post->exam_login_enabled_at->format('d M Y, h:i A') }}
@endif @else Disabled @endif
Post code
{{ $post->code }}
Title
{{ $post->title }}
BPS / Scale
{{ $post->bps }}
Total seats
{{ number_format($post->total_seats) }}
Gender
{{ $post->gender_label }}
Age range
{{ $post->min_age }} – {{ $post->max_age }} years
@if($post->description)
Description
{{ $post->description }}
@endif
Qualification
{{ $post->qualification }}
Created by
{{ $post->creator?->name ?? '—' }}
Created at
{{ $post->created_at->format('d M Y, h:i A') }}
{{-- ── Quota breakdown + quick stats ────────────────────────── --}}
@endsection