@extends('layouts.master') @section('title', 'Cancelled Reasons List - Prolex Law Firm') @section('content')
← Back to Cases

Cancelled Reasons

+ Add New Cancelled Reason
@forelse($caseReasons as $reason) @empty @endforelse
Reason Code Reason Name Description Status Actions
{{ $reason->reason_code }} {{ $reason->reason_name }} {{ Str::limit($reason->reason_description, 50) }} {{ $reason->status ? 'Active' : 'Inactive' }} View Edit
@csrf @method('DELETE')
No cancelled reasons found. Add your first cancelled reason
{{ $caseReasons->links() }}
@endsection