@extends('layouts.user-app') @section('content')
| Service | Crew Name | Price | Status |
|---|---|---|---|
@if($estimation->services->count() > 1 || $estimation->others != null)
Multiple
@elseif($estimation->services->count() == 1)
{{$estimation->services->first()->title ?? ''}}
@endif
|
@foreach($estimation->emailUser->where('type', 'crewVisit') as $email)
@php
$crewName = json_decode($email->content)
@endphp
{{$crewName->crewName ?? ''}} | @endforeach @foreach($estimation->emailUser->where('type', 'userPayment') as $email) @php $serviceTotalFees = json_decode($email->content) @endphp${{$serviceTotalFees->serviceTotalFees ?? ''}} | @endforeach{{$estimation->status ?? ''}} |