@extends('layouts.contractor-app') @section('content')

Pending Jobs

{{-- --}} @foreach($pendingEstimation as $estimation) @if($estimation->user) @else @endif {{-- --}} @endforeach
Job Title User NameDateStatus Action
@if($estimation->services->count() > 1 || $estimation->others != null) Multiple @elseif($estimation->services->count() == 1) img{{$estimation->services->first()->title ?? ''}} @endif {{$estimation->user->name ?? ''}}{{$estimation->first_name .' '. $estimation->last_name ?? ''}}{{$estimation->created_at->format('n/j/Y') ?? ''}}{{$estimation->status ?? ''}}
@endsection