@extends('layouts.app') @section('title', 'Bandwidth Up/Down Logs - ISP ERP System') @section('page-title', 'Bandwidth Up/Down Logs Management') @section('content')
Manage bandwidth upload and download logs
| 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 | |
|
No bandwidth logs found. Create your first log |
|||||