@extends('layouts.admin') @section('title', 'Manage Services') @section('page_heading', 'Manage Services') @section('page_actions') Add Service @endsection @section('content')
| Name | Category | Starting Price | Features | Status | Actions | |
|---|---|---|---|---|---|---|
| {{ $service->name }} | {{ $service->category?->name ?? '-' }} | {{ $service->starting_price !== null ? '$'.number_format($service->starting_price, 2) : '-' }} | {{ count($service->features ?? []) }} item(s) | @if ($service->status === 'active') Active @else Inactive @endif | Edit | |
| No services found. | ||||||