PHP Classes

File: resources/views/payments/thankyou.blade.php

Recommend this page to a friend!
  Classes of Channaveer Hakari   Laravel Stripe Integration Tutorial   resources/views/payments/thankyou.blade.php   Download  
File: resources/views/payments/thankyou.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Stripe Integration Tutorial
Process Stripe payments in a Laravel application
Author: By
Last change:
Date: 5 months ago
Size: 683 bytes
 

Contents

Class file image Download
@extends('master')

@section('content')
    <div class="row">
        <div class="col-md-4 col-md-offset-4">
            <div class="row">
                <div class="col-md-12">
                    <h2 class="text-center">Thank you for making payment.</h2>
                </div>
                @if (Request::has('receipt_url'))
                    <h4 class="text-center">
                        <a href="{{ Request::get('receipt_url') }}" target="_blank">
                            Click here to download you payment receipt
                        </a>
                    </h4>
                @endif
            </div>
            <br>
        </div>
    </div>
@endsection