@extends('layouts.layout-horizontal') @section('title', 'Field Report') @section('content')
| Date | Dealer | Product | Exhibition | Location | CTN Qty | Pcs/CTN | Rate (Yen) | Conv. Rate | INR Rate | Total |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($item->exhibition_date)->format('d-M-Y') }} | {{ $item->exhibitor_name ?: '-' }} | {{ $item->product_description }} | {{ $item->exhibition_name }} | {{ $item->location ?: '-' }} | {{ indian_number($item->ctn_qty, 2) }} | {{ indian_number($item->pieces_per_ctn, 0) }} | {{ indian_number($item->rate_in_yen, 4) }} | {{ indian_number($item->conversion_rate, 6) }} | {{ indian_number($item->inr_rate, 2) }} | {{ indian_number($item->total, 2) }} |
| No field entries found for this date range. | ||||||||||
| Totals: | {{ indian_number($items->sum('ctn_qty'), 2) }} | {{ indian_number($items->sum('pieces_per_ctn'), 0) }} | {{ indian_number($items->sum('total'), 2) }} | |||||||