@extends('layouts.app') @section('title', 'Schedule Break Reasons') @section('content')
| ID | Reason | Description | Status | Created At | Updated At | Actions |
|---|---|---|---|---|---|---|
| {{ $reason->id }} | {{ $reason->reason }} | @if($reason->description) {{ Str::limit($reason->description, 100) }} @else No description @endif | {{ $reason->is_active ? 'Active' : 'Inactive' }} | {{ $reason->created_at->format('M d, Y') }} | {{ $reason->updated_at->format('M d, Y') }} | |
|
No schedule break reasons found. |
||||||