@if(isset($jsonResult))
{{-- Reminder Section --}} @if(isset($jsonResult['reminder']))
Title: {{ $jsonResult['reminder']['title'] }}
Date: {{ $jsonResult['reminder']['date'] }}
Task: {{ $jsonResult['reminder']['task'] }}
Recommendation: {{ $jsonResult['reminder']['recommendation'] }}
@endif {{-- Note Section --}} @if(isset($jsonResult['note']))
Title: {{ $jsonResult['note']['title'] }}
Content: {{ $jsonResult['note']['content'] }}
@endif {{-- Call Section --}} @if(isset($jsonResult['call']))
To: {{ $jsonResult['call']['to'] }}
Content: {{ $jsonResult['call']['content'] }}
@endif {{-- Question Section --}} @if(isset($jsonResult['question']))
Question: {{ $jsonResult['question']['question'] }}
Answer: {{ $jsonResult['question']['answer'] }}
@endif {{-- Completion Section --}} @if(isset($jsonResult['completion']))
Task: {{ $jsonResult['completion']['task'] }}
Date: {{ $jsonResult['completion']['date'] }}
@endif {{-- Summary Section --}} @if(isset($jsonResult['summary']))
Text: {{ $jsonResult['summary']['text'] }}
@endif {{-- Created At Timestamp --}}
Created At: {{ $jsonResult['created_at'] }}
@endif