@extends('layouts.app') @section('title', 'Services & Pricing') @section('styles') @endsection @section('content')
Manage hospital services across departments and set pricing
| Code | Service Name | Category | Department | Price (KES) | Insurance Price | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $svc->code }} | {{ $svc->name }} | {{ $svc->category }} | {{ $svc->department->name ?? '–' }} | {{ number_format($svc->price) }} | {{ $svc->insurance_price ? number_format($svc->insurance_price) : '–' }} | @if($svc->is_active)Active@elseInactive@endif |
|
| No services found. Click + Add Service to create one. | |||||||