{{-- resources/views/positions/show.blade.php --}} @extends('layouts.app') @section('title', 'Detail Posisi') @section('page-title', 'Detail Posisi') @push('styles') {{-- tidak ada style tambahan supaya tidak bentrok dengan sidebar/layout --}} @endpush @section('content') {{-- Breadcrumb + judul --}}
{{-- Header kartu --}}| Nama | Status | Tanggal | |
|---|---|---|---|
| {{ $c->full_name ?? '-' }} | {{ $c->email ?? '-' }} | {{ ucfirst($c->status ?? '-') }} | {{ $c->created_at ? $c->created_at->format('d M Y H:i') : '-' }} |