@php $i = 1; @endphp
@if(count($bucketSettingLogs) > 0)
@foreach($bucketSettingLogs as $log)
@php
$oldData = !empty($log->old_data) ? json_decode($log->old_data, true) : array();
$newData = !empty($log->new_data) ? json_decode($log->new_data, true) : array();
@endphp
Old Data |
Start Time |
{{isset($oldData['start_time']) ? date("h:i:s A", strtotime($oldData['start_time'])) : ''}} |
End Time |
{{isset($oldData['end_time']) ? date("h:i:s A", strtotime($oldData['end_time'])) : ''}} |
Interval |
{{@$oldData['interval']}} {{@$oldData['duration']}} |
No. of Leads |
{{@$oldData['no_of_leads']}} |
Days |
{{@$oldData['days']}} |
New Data |
Start Time |
{{isset($newData['start_time']) ? date("h:i:s A", strtotime($newData['start_time'])) : ''}} |
End Time |
{{isset($newData['end_time']) ? date("h:i:s A", strtotime($newData['end_time'])) : ''}} |
Interval |
{{@$newData['interval']}} {{@$newData['duration']}} |
No. of Leads |
{{@$newData['no_of_leads']}} |
Days |
{{@$newData['days']}} |
@php $i++; @endphp
@endforeach
@else
@endif