@if($this->transactions->count())
@endif
@if($this->requiresCapture)
@endif
@livewire('hub.components.orders.status', [
'order' => $this->order,
])
{{ __('adminhub::components.orders.show.download_pdf') }}
@if($component->items->count())
@foreach($component->items as $item)
@if ($item->component)
@livewire($item->component, [
'order' => $this->order,
])
@else
{{ $item->name }}
@endif
@endforeach
@endif