{{-- TENDRA --}} @extends(view_path('master')) @section('additional_head_tags') @if(config('app.facebook_pixel')) {!! config('app.facebook_pixel') !!} @endif @endsection @section('body')
{{ __('Order completed') }}
{{ __('Thank you for shopping with us') }}
{{ __('Order summary') }}
@foreach($transaction->details->items ?? [] as $key => $item)
{{ __($item->name) }}
{{ price($item->value, 0) }}
@endforeach
{{ __('Total due amount') }}
{{ price($transaction->details->custom_amount ?? $transaction->details->total_amount, 0) }}
{{ __('Order number') }} : {{ $transaction->reference_id }}
{!! __('If you have questions about your order, please email us at :admin_email', ['admin_email' => config('app.email')]) !!}
{{ __('Homepage') }} @auth @if($transaction->type == "product") {{ __('My purchases') }} @elseif($transaction->type === "subscription") {{ __('My subscriptions') }} @else {{ __('My credits') }} @endif @endauth
@if($transaction->type === "product")
{{ __('Downloads') }}
@foreach($items as $item)
{{ $item->name }}
@if($item->files > 1)
{{ __('Download') }}
@else @endif
@endforeach
{!! __('Download links have been sent to your email address, please check your :buyer_email inbox', ['buyer_email' => $transaction->user_email ?? $transaction->guest_email]) !!}.
@endif
@endsection