
{{ $customer->name }}
Email: {{ $customer->email }}
Phone Number: {{ $customer->phone }}
@if($customer->created_at)Account Created At: {{ $customer->created_at->format('d-m-Y') }}
@endif{{$subscription->package->name}} @if($subscription->freeze == 0) Active @else Inactive @endif
{{$subscription->package->monthly_price}} QAR /month
Subscription start date: {{ $subscription->start_date }}
Subscription end date: {{ $subscription->end_date }}
Wash days:
@foreach($days as $day) {{ $day->name }} @endforeach@foreach($subscription->cars as $car)
Customer Car:
- Car type: {{$car->type->name}}
- Car model: {{$car->model->name}}
- Car brand: {{$car->brand->name}}
- Car color:
- Address: {{$car->location->area}},{{$car->location->street_name}},{{$car->location->compound_name}},{{$car->location->near_building_name}} @elseif($car->location->compound_name && $car->location->near_building_name == null)
- Address: {{$car->location->area}},{{$car->location->street_name}},{{$car->location->compound_name}} @elseif($car->location->compound_name==null && $car->location->near_building_name)
- Address: {{$car->location->area}},{{$car->location->street_name}},{{$car->location->near_building_name}} @else
- Address: {{$car->location->area}},{{$car->location->street_name}} @endif
- Plate number: {{$car->plate_number}}
- Car location: Open maps
- Car Image: Open image
Wash history:
@foreach($dates as $date) @if($date->date <= date('Y-m-d')) {{date('d-m-Y', strtotime($date->date))}} @endif @endforeachUpcoming washes:
@foreach($dates as $date) @if($date->date > date('Y-m-d')) {{date('d-m-Y', strtotime($date->date))}} @endif @endforeachPayment History
# | Package | Package Price | Discount | Paid Amount | Payment Type | Subs.type | Total | ||
---|---|---|---|---|---|---|---|---|---|
{{ $invoice->transaction_code }} | {{ $invoice->subscription->package->name }} | {{ $invoice->subscription->package->monthly_price }} QAR | @if($invoice->coupon_id) @if($invoice->coupon->type == 'percent'){{ $invoice->coupon->amount }} % | @else{{ $invoice->coupon->amount }} QAR | @endif @elseN/A | @endif{{ $invoice->amount }} QAR | {{ $invoice->payment_method_type }} | {{ $invoice->type }} | {{ $invoice->amount }} QAR |