@extends('layouts.app') @section('title','Treatments') @section('content')

Medical Treatments

Manage CRAS treatment offerings and their inventory kits

New Treatment
@include('partials._alerts')
@forelse($treatments as $treatment)
{{ $treatment->name }}
{{ $treatment->is_active ? 'Active' : 'Inactive' }}

{{ Str::limit($treatment->description, 80) ?: 'No description.' }}

Standard Fee
LKR {{ number_format((float)$treatment->standard_fee, 0) }}
Sessions
{{ $treatment->sessions_count }}
@empty
No treatments yet. Create the first one.
@endforelse
{{ $treatments->links() }}
@endsection