Acitivty Log

Today Calls
Past Calls
Tickets
Apply
Loading

@if (!$isLoad)
Loading....
@else
    @foreach ($timelineLogs->sortByDesc('created_at') as $timelineLog)
  1. @if ($timelineLog['icon'] == 'icon-phone') @endif @if ($timelineLog['icon'] == 'icon-phone-out') @endif @if ($timelineLog['icon'] == 'icon-order') @endif @if ($timelineLog['icon'] == 'icon-ticket') @endif

    {{ $timelineLog['title'] }}
    @if (!empty($timelineLog['last-comment']))
    @endif
    @if ($loop->first) Latest @endif

    Agent :{{ $timelineLog['created_by'] }}
    @if (in_array($timelineLog['title'], ['Order', 'Ticket']))
    @if ($timelineLog['outlet']) Outlet : {{ $timelineLog['outlet'] }} @endif
    @if (in_array($timelineLog['title'], ['Order']))
    Sale Total : Rs {{ number_format($timelineLog['order_total'], 2) }}
    @endif @if (in_array($timelineLog['title'], ['Ticket']))
    Category : {{ $timelineLog['category'] }}
    Status : {{ $timelineLog['status'] }}
    @endif @endif
    @if (in_array($timelineLog['title'], ['Order', 'Ticket'])) View {{ $timelineLog['title'] }} @endif {{-- @if( $timelineLog['last-reaction']) @endif --}}
  2. @endforeach
@endif