@extends('layouts.app') @section('title', 'Bandwidth Item Prices') @section('content')
| Bandwidth Item | January | February | March | April | May | June | July | August | September | October | November | December |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->name }} | @for($month = 1; $month <= 12; $month++) @php $priceData = $priceMatrix[$item->id][$month] ?? null; @endphp
@if($priceData)
৳{{ number_format($priceData['cost_rate'], 2) }}
@if($priceData['gross_cost'])
{{ number_format($priceData['gross_cost'], 2) }}%
@endif
|
@endfor
|||||||||||
| No bandwidth items found. | ||||||||||||