@extends('layouts.app')
@section('title', 'Bandwidth Item Price Details')
@section('content')
Bandwidth Item Price Details
| 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
|
| Created By: |
{{ $bandwidthItemPrice->createdBy->name ?? 'N/A' }} |
| Created At: |
{{ $bandwidthItemPrice->created_at->format('d M, Y h:i A') }} |
@if($bandwidthItemPrice->updated_at && $bandwidthItemPrice->updated_at != $bandwidthItemPrice->created_at)
| Last Updated By: |
{{ $bandwidthItemPrice->updatedBy->name ?? 'N/A' }} |
| Last Updated At: |
{{ $bandwidthItemPrice->updated_at->format('d M, Y h:i A') }} |
@endif
@endsection