@extends('layouts.app') @section('title', 'NTTN Data Links') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif

NTTN Data Links

Manage NTTN data links

Create NTTN Data Link
Reset
NTTN Data Links List
@forelse($nttnDataLinks as $link) @empty @endforelse
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
@csrf @method('DELETE')

No NTTN data links found

{{ $nttnDataLinks->links() }}
@endsection