@extends('layouts.admin') @section('title', 'Manage Services') @section('page_heading', 'Manage Services') @section('page_actions') Add Service @endsection @section('content')
@forelse ($services as $service) @empty @endforelse
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
@csrf @method('DELETE')
No services found.
{{ $services->links() }}
@endsection