{{-- header --}} @php($breadcrumbs = ['EDI連携' => null, 'ヨドバシカメラ' => route('edi-yodobashi.dashboard'), '出荷通知送信' => null])
{{-- 検索条件 --}}
{{-- |基本条件 --}}
{{-- データリスト --}}
全{{ number_format($total_count ?? 0) }}件中 {{ number_format(($delivery_notices->currentPage() - 1) * $delivery_notices->perPage() + 1) }}〜{{ number_format(min($delivery_notices->currentPage() * $delivery_notices->perPage(), $total_count ?? 0)) }}件を表示
@forelse($delivery_notices as $index => $notice) @empty @endforelse
No 出荷日 EDI受注番号 出荷通知番号 送信ステータス 送信日時 試行回数 操作
{{ ($delivery_notices->currentPage() - 1) * $delivery_notices->perPage() + $loop->iteration }} {{ $notice['shipment_date'] }} {{ $notice['edi_order_number'] }} {{ $notice['delivery_notice_number'] }} {{ $notice['send_status_name'] }} {{ $notice['sent_at'] ? date('Y-m-d H:i', strtotime($notice['sent_at'])) : '-' }} {{ $notice['send_attempts'] }}/{{ $notice['max_attempts'] }}
@if($notice['send_status'] == 1) @endif @if($notice['send_status'] == 4) @endif
データがありません
{{-- ページネーション --}}
{{ $delivery_notices->appends(request()->query())->links() }}