@extends('layouts.app') @section('title', 'Schedule Break Reason Details') @section('content')

Schedule Break Reason Details

{{ $scheduleBreakReason->reason }}

{{ $scheduleBreakReason->description ?: 'No description provided.' }}

{{ $scheduleBreakReason->is_active ? 'Active' : 'Inactive' }}

Additional Information

{{ $scheduleBreakReason->created_at->format('M d, Y H:i A') }}

@if($scheduleBreakReason->updated_at && $scheduleBreakReason->updated_at != $scheduleBreakReason->created_at)

{{ $scheduleBreakReason->updated_at->format('M d, Y H:i A') }}

@endif
@endsection