@extends('layouts.admin') @section('title', 'Reports') @section('page-title', 'Reports') @section('content')
ASN Uploads Report
Filter by date range and view results

Rows: {{ $summary['total_rows'] ?? 0 }} PCS: {{ $summary['sum_pcs'] ?? 0 }} Inward: {{ $summary['sum_inward'] ?? 0 }} Transfer: {{ $summary['sum_transfer'] ?? 0 }} Access: {{ $summary['sum_access'] ?? 0 }}
@forelse($rows as $r) @empty @endforelse
Timestamp Location Invoice Part No Description PCS Inward Transfer Access Status
{{ \Carbon\Carbon::parse($r->ts)->format('Y-m-d H:i') }} {{ $r->location_id }} {{ $r->invoice_number }} {{ $r->part_no }} {{ $r->description }} {{ $r->pcs }} {{ $r->inward_qty }} {{ $r->transfer_qty }} {{ $r->access_qty }} {{ $r->status ?? '-' }}
No records found for selected range.
@endsection