@extends('layouts.app') @section('title', 'Bandwidth Items') @section('content')

Bandwidth Items

Manage bandwidth items and their configurations

Clear
Bandwidth Items List
@if($items->count() > 0)
@foreach($items as $item) @endforeach
Name Provider Service Category Description Unit Usage Count Created Actions
{{ $item->name }}
ID: {{ $item->id }}
@if($item->provider) {{ $item->provider->name }} @else - @endif @if($item->serviceCategory) {{ $item->serviceCategory->name }} @if($item->serviceCategory->code)
{{ $item->serviceCategory->code }} @endif @else - @endif
@if($item->description) {{ Str::limit($item->description, 100) }} @else - @endif @if($item->units) {{ $item->units }} @else - @endif {{ $item->usage_count ?? 0 }} {{ $item->created_at->format('M d, Y') }}
{{ $items->links() }}
@else
No bandwidth items found

Start by adding your first bandwidth item.

@endif
@if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif @foreach($items as $item) @endforeach @endsection