@extends('layouts.app') @section('title', 'NTTN Data Links') @section('content')
Manage NTTN data links
| ID | Link Name | Customer | Quantity | Sell Rate | Sell VAT | Total Amount | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $link->id }} | {{ $link->link_name }} | {{ $link->customer->company_name ?? $link->customer->name ?? '-' }} | {{ number_format($link->quantity, 2) }} | ৳ {{ number_format($link->sell_rate, 2) }} | {{ number_format($link->sell_vat, 2) }}% | ৳ {{ number_format(($link->sell_rate + ($link->sell_rate * $link->sell_vat / 100)) * $link->quantity, 2) }} | @if($link->status == 'active') Active @else Inactive @endif | |
|
No NTTN data links found |
||||||||