@extends('layouts.master')
@section('title', 'Court Type Details - Prolex Law Firm')
@section('content')
Court Type Details
Type Code
{{ $courtType->type_code ?? 'N/A' }}
Type Name
{{ $courtType->type_name }}
Description
{{ $courtType->description ?? 'N/A' }}
Status
{{ $courtType->is_active ? 'Active' : 'Inactive' }}
@endsection