@extends('appshell::layouts.print')
@section('title')
{{ __('Order :no', ['no' => $order->number]) }}
@stop
@section('content')
@yield('title')
@include('vanilo::order.print._header')
{{ __('Customer Notes') }}
@isset($order->notes)
{!! nl2br($order->notes) !!}
@else
{{ __('No special notes have been added by the customer') }}
@endif
@include('vanilo::order.print._items')
@include('vanilo::order.print._payment')
@stop