@extends('layouts.app') @section('title', 'NTTN Link Details') @section('content')
| Link ID: | #{{ $nttnLink->id }} |
|---|---|
| Link Name: | {{ $nttnLink->link_name }} |
| Customer: | {{ $nttnLink->customer->name ?? $nttnLink->customer->company_name ?? '-' }} |
| NTTN Item: | {{ $nttnLink->item->name ?? '-' }} |
| Description: | {{ $nttnLink->description ?? '-' }} |
| Quantity: | {{ number_format($nttnLink->quantity, 2) }} |
| Status: | @if($nttnLink->status == 'active') Active @else Inactive @endif |
| Created By: | {{ $nttnLink->createdBy->name ?? 'N/A' }} |
| Created At: | {{ $nttnLink->created_at->format('d M Y, h:i A') }} |
| Updated By: | {{ $nttnLink->updatedBy->name }} |
| Updated At: | {{ $nttnLink->updated_at->format('d M Y, h:i A') }} |
| Sell Rate: | ৳ {{ number_format($nttnLink->sell_rate, 2) }} |
|---|---|
| Sell VAT: | {{ number_format($nttnLink->sell_vat, 2) }}% |
| Total Sell Amount: | ৳ {{ number_format(($nttnLink->sell_rate + ($nttnLink->sell_rate * $nttnLink->sell_vat / 100)) * $nttnLink->quantity, 2) }} |
| Cast Rate: | ৳ {{ number_format($nttnLink->cast_rate, 2) }} |
|---|---|
| Cast VAT: | {{ number_format($nttnLink->cast_vat, 2) }}% |
| Total Cast Amount: | ৳ {{ number_format(($nttnLink->cast_rate + ($nttnLink->cast_rate * $nttnLink->cast_vat / 100)) * $nttnLink->quantity, 2) }} |
| # | 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') }} |