{{-- header --}} @php($breadcrumbs = ['EDI連携' => null, 'トラスコ中山' => route('edi-trusco.dashboard'), '商品別注文データ集計表' => null])
{{-- 検索条件 --}}
@csrf {{-- |基本条件 --}}
{{-- データリスト --}}
全{{ number_format($total_count ?? 0) }}件中 {{ number_format(($summary_data->currentPage() - 1) * $summary_data->perPage() + 1) }}〜{{ number_format(min($summary_data->currentPage() * $summary_data->perPage(), $total_count ?? 0)) }}件を表示
@forelse($summary_data as $row) @empty @endforelse
No JANコード 商品名 注文数量
{{ ($summary_data->currentPage() - 1) * $summary_data->perPage() + $loop->iteration }} {{ $row['jan_code'] }} {{ $row['product_name'] }} {{ number_format($row['order_qty']) }}
データがありません