@extends('layouts.admin') @section('title', 'communication Log') @section('content')

Communication Log

Add New Log
@if(session('success'))
{{ session('success') }}
@endif
@forelse($logs as $log) @empty @endforelse
Merchant Channel Direction Summary Logged By Date Actions
{{ $log->merchant->name }} {{ $log->channel }} {{ ucfirst($log->direction) }} {{ Str::limit($log->summary, 50) }} {{ $log->loggedBy->name }} {{ $log->created_at->format('d M Y, H:i') }} Edit
@csrf @method('DELETE')
No communication logs found.
{{ $logs->links() }}
@endsection