@extends('layouts.app') @section('title', 'Bandwidth Up/Down Logs - ISP ERP System') @section('page-title', 'Bandwidth Up/Down Logs Management') @section('content')

Bandwidth Up/Down Logs

Manage bandwidth upload and download logs

All Bandwidth Logs
@if(session('success')) @endif
@php $shownCustomerIds = []; @endphp @forelse($logs as $log) @php $cid = $log->customer ? $log->customer->id : null; @endphp @if($cid && in_array($cid, $shownCustomerIds)) @continue @endif @php if($cid) { $shownCustomerIds[] = $cid; } @endphp @empty @endforelse
ID Customer Log Date Status Created By Actions
{{ $log->id }} @if($log->customer) {{ $log->customer->company_name ? $log->customer->company_name . ' - ' . $log->customer->name : $log->customer->name }} @if($log->customer->email)
{{ $log->customer->email }} @endif @else - @endif
{{ $log->log_date ? $log->log_date->format('M d, Y g:i') : '-' }}
{{ ucfirst($log->status) }} {{ ucfirst($log->approval_status) }}
@if($log->creator) {{ strtoupper($log->creator->name) }} @else - @endif
@csrf @method('DELETE')

No bandwidth logs found. Create your first log

@if($logs->hasPages())
{{ $logs->links() }}
@endif
@endsection @section('styles') @endsection