@extends('admin.layouts.app') @section('title', __('services.title')) @section('breadcrumb') @endsection @section('content')
@if(session('success')) @endif @if(session('error')) @endif
Clinic Services
Manage all services offered at the clinic.
@forelse($services as $service) @empty @endforelse
# Name (AR) Name (EN) Category Specialty Price Duration Bookable Status Actions
{{ $service->id }} {{ $service->name_ar }} @if($service->code)
{{ $service->code }} @endif
{{ $service->name_en ?? '—' }} @if($service->category) {{ $service->category->name_en ?? $service->category->name_ar }} @else @endif {{ $service->category?->medicalSpecialty?->name ?? '—' }} {{ number_format($service->default_price, 2) }} {{ $service->duration_minutes }} min @if($service->is_bookable) @else @endif @if($service->is_active) Active @else Inactive @endif
@if($service->is_active)
@csrf @method('PATCH')
@else
@csrf @method('PATCH')
@endif
@csrf @method('DELETE')

No services found.

Create First Service
@if($services->hasPages()) @endif
@endsection