@extends('layouts.admin') @section('title', 'Reports - Packing') @section('page-title', 'Reports') @section('content')
Packing Report
Data from so_packing

Rows: {{ $summary['total_rows'] ?? 0 }} Boxes: {{ $summary['boxes'] ?? 0 }} Items: {{ $summary['items'] ?? 0 }} Qty: {{ number_format($summary['qty'] ?? 0) }} Weight: {{ number_format($summary['weight'] ?? 0, 2) }}
@forelse($rows as $r) @empty @endforelse
Date Location SO No Boxes Items Total Qty Total Weight Status
{{ \Carbon\Carbon::parse($r->created_at)->format('Y-m-d H:i') }} {{ $r->location_id }} {{ $r->so_no }} {{ $r->boxes_count }} {{ $r->items_count }} {{ number_format($r->qty_total, 2) }} {{ number_format($r->weight_total, 2) }} {{ $r->status }}
No records found for selected range.
@endsection @section('scripts') @endsection