@extends('layouts.master') @section('title') Downloaded Transaction Logs @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Downloaded Transaction Logs @endslot @slot('title') List @endslot @endcomponent @include('partials.session')

Downloaded Transaction Logs

@forelse ($files as $key => $f) @empty @endforelse
Sr. User Log File Datetime Action
{{ $f->id }} {{ $f->user->first_name . $f->user->last_name ?? 'N/A' }} {{ $f->file_path ?? 'File Not Found' }} {{ $f->created_at->diffForHumans() ?? '' }}
No files available.
@endsection @section('script') @endsection