@extends('layouts.app') @section('title', 'Position Details') @section('content')
| ID | {{ $position->id }} |
|---|---|
| Position Name | {{ $position->name }} |
| Description | {{ $position->description ?: 'N/A' }} |
| Status | @if($position->is_active) Active @else Inactive @endif |
| Created At | {{ $position->created_at }} |
| Updated At | {{ $position->updated_at }} |