@extends('admin.layouts.app')
@section('section')
@php
$decodedContent = json_decode($estimation->other_service);
@endphp
| Service Name |
Crew Progress |
Status |
{{-- Action | --}}
@foreach($estimation->estimationServices as $service)
| {{$service->service->title}} |
{{$service->crew_progress}} |
{{$service->status}} |
@endforeach
@if($estimation->other_service != null)
@foreach($decodedContent as $services)
@foreach($services as $single)
Extra Service : {{ $single->Service }} |
{{$single->Progress}} |
{{$single->Status}} |
@endforeach
@endforeach
@endif
@endsection
@section('script')
@endsection