diff --git a/modules/PaypalStandard/Resources/views/show.blade.php b/modules/PaypalStandard/Resources/views/show.blade.php index e5a9458d9..bdd14657d 100644 --- a/modules/PaypalStandard/Resources/views/show.blade.php +++ b/modules/PaypalStandard/Resources/views/show.blade.php @@ -1,46 +1,48 @@ -

{{ $setting['name'] }}

+
+

{{ $setting['name'] }}

-@if($setting['mode'] == 'sandbox') -
{{ trans('paypal-standard::general.test_mode') }}
-@endif + @if($setting['mode'] == 'sandbox') +
{{ trans('paypal-standard::general.test_mode') }}
+ @endif -
- {{ trans('paypal-standard::general.description') }} -
- -
- - - - - @foreach ($invoice->items as $item) - - - - - @endforeach - - - - - - - - - - - - - - - - - - - -
-
- -
+
+ {{ trans('paypal-standard::general.description') }}
- + +
+ + + + + @foreach ($invoice->items as $item) + + + + + @endforeach + + + + + + + + + + + + + + + + + + + +
+
+ +
+
+
+
diff --git a/modules/PaypalStandard/Routes/signed.php b/modules/PaypalStandard/Routes/signed.php index bafa7a6b4..b1b2594de 100644 --- a/modules/PaypalStandard/Routes/signed.php +++ b/modules/PaypalStandard/Routes/signed.php @@ -5,5 +5,5 @@ Route::group([ 'middleware' => 'signed', 'namespace' => 'Modules\PaypalStandard\Http\Controllers' ], function () { - Route::post('invoices/{invoice}/paypal-standard', 'Payment@show')->name('signed.invoices.paypal-standard.show'); + Route::get('invoices/{invoice}/paypal-standard', 'Payment@show')->name('signed.invoices.paypal-standard.show'); });