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