@extends('layouts.app') @section('content')
Add new services to customer account with pricing and quantity details
| Service | Unit Price | Quantity | Duration | Notes | Actions |
|---|---|---|---|---|---|
{{ $service->ServiceName }}@if($service->pivot->IsActive) Active @else Inactive @endif |
{{ number_format($service->pivot->Price, 2) }} {{ config('app.currency', 'Ksh.') }} | {{ $service->pivot->Quantity ?? 1 }} | {{ \Carbon\Carbon::parse($service->pivot->StartDate)->format('M d, Y') }} @if($service->pivot->EndDate) - {{ \Carbon\Carbon::parse($service->pivot->EndDate)->format('M d, Y') }} @else - No end date @endif | @if($service->pivot->Notes) {{ $service->pivot->Notes }} @else - @endif |
Get started by assigning a new service to this customer.