@extends('portal.layouts.app', [ 'class' => '', 'elementActive' => '' ]) @section('title', 'Agent Call Logs') @section('css') @endsection @section('content')

Agent Call Logs

@foreach($data as $index => $item) @endforeach
# Candidate Phone Status Remarks Time
{{ $index + 1 }} {{ $item->candidate->user->name }} {{ $item->phone }} {{ $item->call_status }} {{ $item->call_summary }} {{ Carbon\Carbon::parse($item->call_time)->format('jS M Y h:i A') }}
@endsection @section('script') @endsection