@extends('layouts.app') @section('title', 'Data Link Details with Sell Report') @section('content')

Data Link Details with Sell Report

View detailed information about this data link including sell rates

Back to User Profile
Link Information
@if($nttnDataLink->updatedBy) @endif
Link ID: #{{ $nttnDataLink->id }}
Link Name: {{ $nttnDataLink->link_name }}
Customer: {{ $nttnDataLink->customer->company_name ?? $nttnDataLink->customer->name ?? '-' }}
Description: {{ $nttnDataLink->description ?? '-' }}
Quantity: {{ number_format($nttnDataLink->quantity, 2) }}
Status: @if($nttnDataLink->status == 'active') Active @else Inactive @endif
Created By: {{ $nttnDataLink->createdBy->name ?? 'N/A' }}
Created At: {{ $nttnDataLink->created_at->format('d M Y, h:i A') }}
Updated By: {{ $nttnDataLink->updatedBy->name }}
Updated At: {{ $nttnDataLink->updated_at->format('d M Y, h:i A') }}
Sell Rates
Sell Rate: ৳ {{ number_format($nttnDataLink->sell_rate, 2) }}
Sell VAT: {{ number_format($nttnDataLink->sell_vat, 2) }}%
VAT Amount: ৳ {{ number_format($nttnDataLink->sell_rate * $nttnDataLink->sell_vat / 100, 2) }}
Rate with VAT: ৳ {{ number_format($nttnDataLink->sell_rate + ($nttnDataLink->sell_rate * $nttnDataLink->sell_vat / 100), 2) }}
Total Calculation
Quantity: {{ number_format($nttnDataLink->quantity, 2) }}
Total Sell Amount: ৳ {{ number_format(($nttnDataLink->sell_rate + ($nttnDataLink->sell_rate * $nttnDataLink->sell_vat / 100)) * $nttnDataLink->quantity, 2) }}
From POP Details
POP Name: {{ $nttnDataLink->from_pop_name ?? '-' }}
Switch/Router: {{ $nttnDataLink->from_switch_or_router ?? '-' }}
Port Number: {{ $nttnDataLink->from_port_number ?? '-' }}
Port Capacity: {{ $nttnDataLink->from_port_capacity ?? '-' }}
SFP Serial: {{ $nttnDataLink->from_sfp_serial ?? '-' }}
SFP Owner: {{ $nttnDataLink->from_sfp_owner ?? '-' }}
To POP Details
POP Name: {{ $nttnDataLink->to_pop_name ?? '-' }}
Switch/Router: {{ $nttnDataLink->to_switch_or_router ?? '-' }}
Port Number: {{ $nttnDataLink->to_port_number ?? '-' }}
Port Capacity: {{ $nttnDataLink->to_port_capacity ?? '-' }}
Port Traffic Usage: {{ $nttnDataLink->to_port_traffic_usage ?? '-' }}
SFP Serial: {{ $nttnDataLink->to_sfp_serial ?? '-' }}
SFP Owner: {{ $nttnDataLink->to_sfp_owner ?? '-' }}
@if($nttnDataLink->vlans->count() > 0)
VLAN Details ({{ $nttnDataLink->vlans->count() }})
@foreach($nttnDataLink->vlans as $index => $vlan) @endforeach
# VLAN Name VLAN ID Description Status Created At Action
{{ $index + 1 }} {{ $vlan->vlan_name }} {{ $vlan->vlan_id ?? '-' }} {{ $vlan->description ?? '-' }} @if($vlan->status == 'active') Active @else Inactive @endif {{ $vlan->created_at->format('d M Y, h:i A') }}
@endif
@push('scripts') @endpush @endsection