@php
$services = \App\Models\PropertyService::where('property_id', tenant_id())
->where('is_active', true)
->orderBy('name')
->get();
@endphp
@if($services->isEmpty())
No services configured.
Add services →
@else
@foreach($services as $svc)
{{ $svc->name }}
{{ tenant()->baseCurrency?->code ?? 'USD' }}
{{ number_format($svc->price, 2) }}
@if($svc->unit) / {{ $svc->unit }} @endif
@endforeach
Services subtotal
{{ tenant()->baseCurrency?->code ?? 'USD' }} 0.00
@endif