{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: receipt.blade.php ------------------------------------------------------ Use: The outcome of a gateway payment, with the ten- second automatic return to the shop. The whole background takes the colour of the result. ===================================================== --}} @extends('layouts.gateway') @section('title', __('front.pay.receipt_title')) @section('outcome', $order->isPaid() ? 'success' : 'failed') @section('content')
{{ __('front.pay.success_body') }}
@else{{ $order->isTimedOut() ? __('front.pay.failed_body_expired') : __('front.pay.failed_body_canceled') }}
@endif