@extends('layouts.app') @section('title', 'NTTN Items List') @section('content')

NTTN Items List

List of all NTTN Items

Back to NTTN Links Create NTTN Item
Reset
NTTN Items List
@forelse($nttnItems as $item) @empty @endforelse
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') }}
@csrf @method('DELETE')

No NTTN items found

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