@extends('layouts.guest-invoice') @section('title', 'Information Regarding Your Order') @section('content') @if(session()->has('success'))
@elseif(session()->has('warning'))
@elseif(session()->has('error'))
@endif

Invoice from {{ config('settings.app_name') }}

Print/PDF
{{ config('settings.app_name') }}

{{ config('settings.app_name') }}

{{ config('settings.address') }}

{{ config('settings.city') }}, {{ config('settings.country') }}.

Invoice No : {{ $invoice->invoice_no }}

Issued : {{ $invoice->formatted_created_at_date }}

{{ $invoice->formatted_grand_total }}

{{ $invoice->formatted_payment_status }}

{{ config('settings.phone') }} {{ config('settings.email') }}

Bill To

{{ $invoice->customer->name }}
{{ $invoice->customer->address }}
{{ $invoice->customer->email }}
@if ($invoice->billing_address)

{!! $invoice->billing_address !!}

@endif

Items

@foreach ($invoice->orders as $order)

Order ID: {{ $order->id }}

Date: {{ $order->formatted_created_at_date }}

{{ $order->billing_type->title() }} on {{ $order->sites_title }}

@foreach ($order->sites as $site)

{{ $site->pivot->live_link }} {{ $site->formatted_pivot_price }}

@endforeach

Sub Total {{ $order->formatted_sub_total }}

Discount {{ $order->formatted_discount }}

Total {{ $order->formatted_grand_total }}

@endforeach
Sub Total {{ $invoice->formatted_sub_total }}
Discount {{ $invoice->formatted_discount }}
Grand Total {{ $invoice->formatted_grand_total }}
@if ($invoice->description)

Description

{{ $invoice->description }}

@endif

Invoice Total: {{ $invoice->formatted_grand_total }}

@if($invoice->payment_status->isPayable()) @forelse($invoice->supportedEnabledPaymentMethods as $supported_payment_method)
@if($supported_payment_method->isPayProGlobal()) @elseif($supported_payment_method->isPaddle())
@else

{!! $supported_payment_method->payment_method->description() !!}

@endif
@if(! $loop->last)

Or

@endif @empty

{{ __('Payment methods are temporarily unavailable. Please, Try again after some time.') }}

@endforelse @else
{{ $invoice->formatted_payment_status }}
@endif
@endsection @push('head-scripts') @endpush @push('scripts') @endpush