@extends('layouts.client') @section('title') {{ $pageTitle }} @endsection @push('vendor-styles') @endpush @push('page-styles') @endpush @section('body')

{{ $pageTitle }}

@if ($pageSlug == 'cancelled-jobs') @else @endif @php function detailsRoute($id,$slug){ return $slug == 'ongoing-jobs' || $slug == 'gps-track-service' ? route('job-history.ongoing-jobs.details',$id) : route('job-history.jobs.details',$id); } @endphp @foreach ($jobs as $job) @if ($pageSlug == 'cancelled-jobs') @else --- @endif @else @endif @endforeach
Address Service PriceCancellation charges Refund Amount Refund statusProvider Recurring status DateActions

{{ $job->property->address }}

{{-- 10 Mins (25 Miles) --}}
{{ $job->category->name }} ${{ $job->grand_total }}${{ $job->cancellation_charges ?? "---" }} ${{ $job->grand_total - $job->cancellation_charges }} @if ($job->is_refunded == 1) Refunded{{ $job->assigned_to && $job->provider ? $job->provider->first_name.' '.$job->provider->last_name : 'Not assigned' }} {{ $job->service_type == 1 ? 'One time' : 'Every '.$job->period->duration.' Days' }} {{ $job->date }} Rate this job See Details Mark this job as Completed
@endsection @push('vendor-scripts') @endpush @push('page-scripts') @endpush