@extends('appshell::layouts.private')
@section('title')
{{ __('Order :no', ['no' => $order->number]) }}
@stop
@section('content')
@include('vanilo::order.show._cards')
@include('vanilo::order.show._addresses')
@include('vanilo::order.show._details')
@include('vanilo::order.show._items')
@include('vanilo::order.show._payment')
@if(null !== $order->shipping_address_id)
@include('vanilo::order.show._shipment')
@endif
@include('vanilo::order.show._actions')
@stop