@extends('layouts.app') @section('title', 'Bandwidth Items') @section('content')
Manage bandwidth items and their configurations
| 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') }} |
Start by adding your first bandwidth item.