@extends('layouts.app') @section('title', 'View Task Report') @section('headSource') @endsection @section('content')

View Task Report

Detail

Sheet Title :
{{$data->sheet->name}}
Staff name :
{{$data->staff->name}}
Client name :
{{$data->client->name}}
Created at :
{{date('D d Y h:i A',strtotime($data->created_at))}}
Additional message :
{{$data->additional_message}}

Progress Note

{!! $data->progress_note !!}

Task Report

@foreach($data->reportData as $record)

{{$record->question->title}}

{{$record->answer->answer}}

@endforeach
@endsection @section('footerSource') @endsection