Skip to content

Commit

Permalink
Closes #35
Browse files Browse the repository at this point in the history
  • Loading branch information
csavelief committed Jun 28, 2024
1 parent 29b0195 commit 1ef4a29
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions resources/views/checkout/thankyou.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
@stop

@section('content')
<div class="container">
<div class="container mt-3">
<h1>Wonderful {{ $order->getBillpayer()->firstname }}!</h1>
<hr>

<div class="alert alert-success">Your order has been registered with number
<strong>{{ $order->getNumber() }}</strong>.
<div class="alert alert-success">
Your order has been registered with number <strong>{{ $order->getNumber() }}</strong>.
</div>

<h3>Payment</h3>

{!! $paymentRequest->getHtmlSnippet(); !!}
@if(!empty($paymentRequest->getHtmlSnippet()))
<h3>Payment</h3>
{!! $paymentRequest->getHtmlSnippet(); !!}
@endif

@unless($paymentRequest->willRedirect())
@include('checkout._final_success_text')
Expand Down

0 comments on commit 1ef4a29

Please sign in to comment.