@extends('layouts.app') @section('title', 'Bandwidth Item Price Details') @section('content')

Bandwidth Item Price Details

Back to List Edit
Price Information
Bandwidth Item: {{ $bandwidthItemPrice->bandwidthItem->name ?? 'N/A' }}
Cost Rate: ৳ {{ number_format($bandwidthItemPrice->cost_rate, 2) }}
Effective Month: {{ $bandwidthItemPrice->effective_date->format('M Y') }}
Description: {{ $bandwidthItemPrice->description ?? '-' }}
Status: @if($bandwidthItemPrice->status == 'active') Active @else Inactive @endif
Audit Information
@if($bandwidthItemPrice->updated_at && $bandwidthItemPrice->updated_at != $bandwidthItemPrice->created_at) @endif
Created By: {{ $bandwidthItemPrice->createdBy->name ?? 'N/A' }}
Created At: {{ $bandwidthItemPrice->created_at->format('d M, Y h:i A') }}
Last Updated By: {{ $bandwidthItemPrice->updatedBy->name ?? 'N/A' }}
Last Updated At: {{ $bandwidthItemPrice->updated_at->format('d M, Y h:i A') }}
@endsection