@extends('layouts.app') @section('title', 'NTTN Items List') @section('content')
List of all NTTN Items
| ID | Name | Description | Status | Total Links | Total Quantity | Total Sell Amount | Total Cast Amount | Profit/Loss | Created By | Created At | Actions |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $item->id }} | {{ $item->name }} | {{ $item->description ?? '-' }} | @if($item->status == 'active') Active @else Inactive @endif | {{ $item->total_links ?? 0 }} | {{ number_format($item->total_quantity ?? 0, 2) }} | ৳ {{ number_format($item->total_sell_amount ?? 0, 2) }} | ৳ {{ number_format($item->total_cast_amount ?? 0, 2) }} | ৳ {{ number_format($item->total_profit_loss ?? 0, 2) }} | {{ $item->createdBy->name ?? '-' }} | {{ $item->created_at->format('Y-m-d H:i:s') }} | |
|
No NTTN items found |
|||||||||||