@extends('layouts.app') @section('title', 'Add Bandwidth Item Prices') @section('content')

Add Bandwidth Item Prices (Multiple)

Back to List
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif @if($errors->any())
Please correct the following errors:
@endif
Add Prices for Multiple Bandwidth Items
@csrf
This month will apply to all items
This status will apply to all items
This will apply to all items
@foreach($bandwidthItems as $index => $item) @endforeach
# Item Name Cost Rate (৳) Gross Cost (%) Description (Optional)
{{ $index + 1 }} {{ $item->name }} @if(isset($lastMonthValues[$item->id]['cost_rate']) && $lastMonthValues[$item->id]['cost_rate'] != '') Last: ৳{{ number_format($lastMonthValues[$item->id]['cost_rate'], 2) }} @endif @if(isset($lastMonthValues[$item->id]['gross_cost']) && $lastMonthValues[$item->id]['gross_cost'] != '') Last: {{ number_format($lastMonthValues[$item->id]['gross_cost'], 2) }}% @endif
Cancel 0 item(s) selected
@endsection