Invoices

@can('User access') @foreach($jobInvoice as $job) @endforeach @endcan
Invoice Id Job Id Client Provider Category Sub Category Expenses Rate Expenses Details Total Amount SP Amount Admin Amount Cancellation Amount Job Status Invoice Message Pricing Type Ongoing Job Service Date Job Details Client Invoice Provider Invoice
#{{ $job->id }} {{ $job->clientTask->sr_id ?? 'N/A' }} {{ ($job->client->first_name ?? '') . ' ' . ($job->client->last_name ?? '') }} {{ ($job->serviceProvider->first_name ?? '') . ' ' . ($job->serviceProvider->last_name ?? '') }} {{ $job->category->Group_name ?? 'N/A' }} {{ $job->subCategory->Category ?? 'N/A' }} $ {{ number_format($job->expenses_rate, 2) }} {{ $job->expenses_details ?? 'N/A' }} $ {{ number_format($job->total_amount, 2) }} $ {{ number_format($job->client_amount, 2) }} $ {{ number_format($job->admin_amount, 2) }} $ {{ number_format($job->clientTask->cancellation_amount ?? 0, 2) }} @if($job->clientTask && $job->clientTask->job_status == '1') Active @elseif($job->clientTask && $job->clientTask->job_status == '2') Completed @elseif($job->clientTask && $job->clientTask->job_status == '3') Cancelled @elseif($job->clientTask && $job->clientTask->job_status == '4') On Hold @else Unknown @endif @if($job->comment)
{{ $job->comment }}
@if(strlen($job->comment) > 50) @endif @else N/A @endif
{{ $job->pricing_type }} @if($job->ongoing_job == 0) No @elseif($job->ongoing_job == 1) Yes @endif {{ $job->created_at->format('M-d-Y') }} @can('User edit') View @endcan @can('User edit') View @endcan @can('User edit') View @endcan
@foreach($jobInvoice as $job) @if($job->comment && strlen($job->comment) > 50) @endif @endforeach