fixes
This commit is contained in:
@@ -1,7 +0,0 @@
|
||||
@extends('Shop.layout.layout', [
|
||||
'title' => __('Paiement annulé'),
|
||||
])
|
||||
|
||||
@section('content')
|
||||
Le paiement a été annulé.
|
||||
@endsection
|
||||
@@ -1,9 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
</head>
|
||||
<body>
|
||||
Thank you for your payment. Your payment should be accepted soon.
|
||||
</body>
|
||||
</html>
|
||||
11
resources/views/paybox/paybox.blade.php
Normal file
11
resources/views/paybox/paybox.blade.php
Normal file
@@ -0,0 +1,11 @@
|
||||
@extends('Shop.layout.layout', [
|
||||
'title' => __('Paiement CB'),
|
||||
])
|
||||
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
{!! $content !!}
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
@@ -1,7 +0,0 @@
|
||||
@extends('Shop.layout.layout', [
|
||||
'title' => __('Paiement refusé'),
|
||||
])
|
||||
|
||||
@section('content')
|
||||
Le paiement a été refusé.
|
||||
@endsection
|
||||
@@ -1,19 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Send Paybox payment</title>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" action="{{ $url }}" id="paybox-payment">
|
||||
@foreach ($parameters as $name => $value)
|
||||
<input type="hidden" name="{{ $name }}" value="{{ $value }}">
|
||||
@endforeach
|
||||
|
||||
<input type="submit" value="Send payment">
|
||||
</form>
|
||||
<script>
|
||||
document.getElementById("paybox-payment").submit();
|
||||
</script>
|
||||
<body>
|
||||
<form method="post" action="{{ $url }}" id="paybox-payment">
|
||||
@foreach ($parameters as $name => $value)
|
||||
<input type="hidden" name="{{ $name }}" value="{{ $value }}">
|
||||
@endforeach
|
||||
|
||||
<input type="submit" value="Send payment">
|
||||
</form>
|
||||
<script>
|
||||
document.getElementById("paybox-payment").submit();
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
</head>
|
||||
<body>
|
||||
Your payment is waiting. It might take some time until it is completed.
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user