@extends('layouts.app') @section('title', 'View Bandwidth Request - ISP ERP System') @section('page-title', 'View Bandwidth Request') @section('content')
Request ID: #{{ $bandwidthUpdownRequest->id }}
@if($bandwidthUpdownRequest->user)
{{ $bandwidthUpdownRequest->user->company_name ? $bandwidthUpdownRequest->user->company_name . ' - ' . $bandwidthUpdownRequest->user->name : $bandwidthUpdownRequest->user->name }}
@if($bandwidthUpdownRequest->user->email)
{{ $bandwidthUpdownRequest->user->email }}
@endif
@else
-
@endif
{{ ucfirst($bandwidthUpdownRequest->request_type) }}
{{ $bandwidthUpdownRequest->effective_date ? $bandwidthUpdownRequest->effective_date->format('M d, Y') : '-' }}
{{ ucfirst($bandwidthUpdownRequest->status) }}
{{ number_format($bandwidthUpdownRequest->new_bandwidth_mbps, 2) }} Mbps
{{ $bandwidthUpdownRequest->currentSalesInvoice->invoice_no }}
{{ $bandwidthUpdownRequest->currentSalesInvoiceItem->item_name }}
{{ $bandwidthUpdownRequest->salesInvoiceItem->item_name }}
{{ $bandwidthUpdownRequest->notes }}
{{ $bandwidthUpdownRequest->creator ? $bandwidthUpdownRequest->creator->name : '-' }}
{{ $bandwidthUpdownRequest->created_at->format('M d, Y H:i') }}
{{ $bandwidthUpdownRequest->approver->name }}
{{ $bandwidthUpdownRequest->approved_at ? $bandwidthUpdownRequest->approved_at->format('M d, Y H:i') : '-' }}
{{ $bandwidthUpdownRequest->updated_at->format('M d, Y H:i') }}