-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21a205a
commit 48a9ac6
Showing
14 changed files
with
188 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
resources/views/paymentbox-gourl-cryptobox-iframe.blade.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="description" content=""> | ||
<title>{{ $boxJsonValues['texts']['title'] }}</title> | ||
|
||
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"> | ||
@isset($cryptoboxJsPath) | ||
<script> | ||
{!! file_get_contents($cryptoboxJsPath) !!} | ||
</script> | ||
@endisset | ||
|
||
</head> | ||
|
||
<body class="pt-4"> | ||
|
||
@if($laravelCryptoPaymentGateway->showLanguageBox) | ||
<div class='mb-4 text-center'> | ||
{!! display_language_box($laravelCryptoPaymentGateway->defaultLanguage) !!} | ||
</div> | ||
@endif | ||
|
||
@if(!$boxIsPaid) | ||
<div class='mb-2 text-center'> | ||
@php | ||
$coins = $laravelCryptoPaymentGateway->enabledCoins; | ||
$def_coin = $laravelCryptoPaymentGateway->defaultCoin; | ||
$def_language = $laravelCryptoPaymentGateway->defaultLanguage; | ||
$iconWidth = 50; | ||
$style = ""; //margin: 80px 0 0 | ||
$directory = CRYPTOBOX_IMG_FILES_PATH; | ||
echo display_currency_box($coins, $def_coin, $def_language, $iconWidth, $style, $directory); | ||
@endphp | ||
</div> | ||
@endif | ||
|
||
@php | ||
$submit_btn = $box_template_options['submit_btn'] ?? true; | ||
$width = $box_template_options['width'] ?? '540'; | ||
$height = $box_template_options['height'] ?? '230'; | ||
$box_style = $box_template_options['box_style'] ?? ''; | ||
$message_style = $box_template_options['message_style'] ?? ''; | ||
$anchor = $box_template_options['anchor'] ?? ''; | ||
// Display payment box | ||
echo $box->display_cryptobox($submit_btn, $width, $height, $box_style, $message_style, $anchor); | ||
@endphp | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.