{{ $data['title'] ?? 'Invoice' }}

@if(isset($data['is_cancelled']) && $data['is_cancelled'])

This job has been cancelled

@if(isset($data['cancelled_by']) && $data['cancelled_by'])

Cancelled by: {{ ucfirst($data['cancelled_by']) }}

@endif @if(isset($data['cancellation_date']) && $data['cancellation_date'])

Cancellation Date: {{ \Carbon\Carbon::parse($data['cancellation_date'])->format('m-d-Y H:i') }}

@endif @if(isset($data['cancellation_reason']) && $data['cancellation_reason'])

Reason: {{ $data['cancellation_reason'] }}

@endif
@endif

Invoice Details

@if($data['pricing_type'] === 'hourly') @else @endif @if ($data['for'] === 'client') @endif @if ($data['for'] === 'client') @endif @if ($data['for'] === 'client') @endif
Job ID {{ $data['job_id'] ?? 'N/A' }}
Service Provider {{ $data['provider_name'] ?? 'N/A' }}
Client {{ $data['client_name'] ?? 'N/A' }}
Job Start At {{ $data['job_start_at'] ? \Carbon\Carbon::parse($data['job_start_at'])->format('m-d-Y H:i') : 'N/A' }}
Job End At {{ $data['job_end_at'] ? \Carbon\Carbon::parse($data['job_end_at'])->format('m-d-Y H:i') : 'N/A' }}
Category {{ $data['category'] ?? 'N/A' }}
Sub Category {{ $data['sub_category'] ?? 'N/A' }}
Pricing Type {{ $data['pricing_type'] ?? 'N/A' }}
Rate @if($data['pricing_type'] === 'fixed') ${{ number_format($data['rate'] ?? 0, 2) }} Fx @elseif($data['pricing_type'] === 'hourly') ${{ number_format($data['rate'] ?? 0, 2) }} / Hr @else N/A @endif
Worked Hours {{ number_format($data['hours'] ?? 0, 2) }}
Service Provider Total ${{ number_format(($data['hours'] ?? 0) * ($data['rate'] ?? 0), 2) }}
Service Provider Total ${{ number_format($data['rate'] ?? 0, 2) }}
Tax ${{ number_format($data['tax'] ?? 0, 2) }}
Platform Fee ${{ number_format($data['platform_fee'] ?? 0, 2) }}
Expenses ${{ number_format($data['expenses_rate'] ?? 0, 2) }}
Tip ${{ number_format($data['tip'] ?? 0, 2) }}
Promo Code Discount ${{ number_format($data['discount_amount'] ?? 0, 2) }} ({{ $data['promo_code_title'] ?? 'N/A' }})
Total Charged ${{ number_format(($data['total'] ?? 0) + ($data['tip'] ?? 0), 2) }}

Thank you for your business!

© 2024 www.skillram.com. All rights reserved.