@extends('layouts.contractor-app') @section('content')
| Job Title | User Name | Date | Status | Action | |
|---|---|---|---|---|---|
@if($estimation->services->count() > 1 || $estimation->others != null)
Multiple
@elseif($estimation->services->count() == 1)
{{$estimation->services->first()->title ?? ''}}
@endif
|
@if($estimation->user)
{{$estimation->user->name ?? ''}} | @else{{$estimation->first_name .' '. $estimation->last_name ?? ''}} | @endif{{$estimation->start_date ?? ''}} | {{$estimation->status ?? ''}} |
|