@livewire('tab', [
'tabs' => [
'pending' => '保留中',
'settled' => '明日以降出荷',
'unshipped' => '本日出荷',
'canceled' => 'キャンセル済み',
'shipped' => '出荷済み',
],
'tabDataName' => 'tabdata',
'currentTab' => session()->pull('order.tab', 'unshipped'),
])
@include('order/list', ['type' => 'pending'])
@include('order/list', ['type' => 'settled'])
@include('order/list', ['type' => 'unshipped'])
@include('order/list', ['type' => 'canceled'])
@include('order/list', ['type' => 'shipped'])