@extends('layouts.app') @section('title', 'My Services') @section('content')
| Service | Type | Price | Status | Next Due |
|---|---|---|---|---|
| {{ $service->name }} | {{ $service->type }} | {{ format_currency($service->price) }} | {{ $service->status }} | {{ $service->next_due_date?->format('M d, Y') ?? 'N/A' }} |
No services found
@endif