From 5cbb6cfabf29e0206a8a8f14001542fc9cf3fec6 Mon Sep 17 00:00:00 2001 From: DreamWillBeReal <120799088+DarkHorseCorder@users.noreply.github.com> Date: Tue, 1 Jun 2021 19:05:00 +0900 Subject: [PATCH] view frontend --- .../resources/views/layouts/auth.blade.php | 49 ++++++++++ .../resources/views/layouts/user.blade.php | 81 ++++++++++++++++ .../views/other/payment_load.blade.php | 92 +++++++++++++++++++ 3 files changed, 222 insertions(+) create mode 100644 project/resources/views/layouts/auth.blade.php create mode 100644 project/resources/views/layouts/user.blade.php create mode 100644 project/resources/views/other/payment_load.blade.php diff --git a/project/resources/views/layouts/auth.blade.php b/project/resources/views/layouts/auth.blade.php new file mode 100644 index 0000000..172d1cb --- /dev/null +++ b/project/resources/views/layouts/auth.blade.php @@ -0,0 +1,49 @@ + + + + + + + + {{__($gs->title)}}-@yield('title') + + + + + + @stack('style') + + + +
+ + @yield('content') + + @if (@$gs->is_tawk) + + + + @endif + + + + + + @include('notify.alert') + @stack('script') + + + + + diff --git a/project/resources/views/layouts/user.blade.php b/project/resources/views/layouts/user.blade.php new file mode 100644 index 0000000..0a0506d --- /dev/null +++ b/project/resources/views/layouts/user.blade.php @@ -0,0 +1,81 @@ + + + + + + + + @include('other.seo') + {{__($gs->title)}}-@yield('title') + + + + + + + + + + + + @stack('style') + + + + + + +
+
+ +
+ @include('user.partials.sidebar') +
+ @include('user.partials.header') +
+ +
+ @if ($gs->kyc) + @include('user.partials.kyc_info') + @endif +
+ @yield('content') + +
+
+
+ + + + + + + + + + + @include('notify.alert') + @stack('script') + + + + diff --git a/project/resources/views/other/payment_load.blade.php b/project/resources/views/other/payment_load.blade.php new file mode 100644 index 0000000..f8a1a82 --- /dev/null +++ b/project/resources/views/other/payment_load.blade.php @@ -0,0 +1,92 @@ + +@if (in_array($gateway->keyword,['stripe','authorize'])) +
+
+

@langg('Card Information')

+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+@endif + + +@if ($gateway->keyword == 'paystack') + +@endif + + +@if ($gateway->keyword == 'mercadopago') +
+
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ +
+ +
+ +
+ + + + + + +@endif + +@if ($gateway->type == 'manual') +
+
+

@langg('Deposit Instruction')

+

+ @php + echo $gateway->details; + @endphp +

+
+ +
+ + +
+ + +
+@endif \ No newline at end of file