/home/kueuepay/public_html/resources/views/frontend/partials/footer.blade.php
@php
    $app_local      = get_default_language_code();
    $slug           = Illuminate\Support\Str::slug(App\Constants\SiteSectionConst::FOOTER_SECTION);
    $footer         = App\Models\Admin\SiteSections::getData($slug)->first();
    $subscribe_slug = Illuminate\Support\Str::slug(App\Constants\SiteSectionConst::SUBSCRIBE_SECTION);
    $subscribe      = App\Models\Admin\SiteSections::getData($subscribe_slug)->first();
    $useful_links   = App\Models\Admin\UsefulLink::where('status',true)->get()
@endphp
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Start Footer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
<footer class="footer-section bg_img" data-background="{{ asset('public/frontend/') }}/images/element/footer-bg.webp">
    <div class="container mx-auto">
        <div class="footer-content pt-60">
            <div class="row">
                <div class="col-xl-4 col-lg-4 mb-50">
                    <div class="footer-widget">
                        <div class="footer-text">
                            <a href="{{ setRoute('frontend.index') }}"><img src="{{ @$footer->value->footer->image ? get_image($footer->value->footer->image ?? '','site-section') : get_logo($basic_settings) }}" alt="image"></a>
                            <p>{{ $footer->value->footer->language->$app_local->description ??  $footer->value->footer->language->$default->description ?? '' }}</p>
                        </div>
                        <div class="footer-social-icon">
                            @php
                                $items = $footer->value->social_links ?? [];
                            @endphp
                            <span>{{ __("Follow us") }} :</span>
                            @foreach ($items as $item)
                                <a href="{{ $item->link ?? "" }}" target="_blank"><i class="{{ $item->icon ?? ""}}"></i></a>
                            @endforeach
                        </div>
                    </div>
                </div>
                <div class="col-xl-4 col-lg-4 col-md-6 mb-30">
                    <div class="footer-widget">
                        <div class="footer-widget-heading">
                            <h3>{{ __("Useful Links") }}</h3>
                        </div>
                        <ul>
                            @foreach ($useful_links ?? [] as $item)
                                <li><a href="{{ setRoute('frontend.useful.links',$item->slug)}}">{{ $item->title->language->$app_local->title ??$item->title->language->$default->title ?? ""}}</a></li>
                            @endforeach
                        </ul>
                    </div>
                </div>
                <div class="col-xl-4 col-lg-4 col-md-6 mb-50">
                    <div class="footer-widget">
                        <div class="footer-widget-heading">
                            <h3>{{ $subscribe->value->language->$app_local->title ??  $subscribe->value->language->$default->title ?? '' }}</h3>
                        </div>
                        <div class="footer-text mb-25">
                            <p>{{ $subscribe->value->language->$app_local->description ??  $subscribe->value->language->$default->description ?? '' }}</p>
                        </div>
                        <div class="subscribe-form">
                            <form id="subscribe-form" action="{{ setRoute('frontend.subscribe') }} " method="POST">
                                @csrf
                                <input type="email" name="email" placeholder="{{ __("Email Address") }}">
                                <button><i class="fab fa-telegram-plane"></i></button>
                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
    <div class="copyright-area">
        <div class="container">
            <div class="row">
                <div class="col-12 text-center text-lg-left">
                    <div class="copyright-text">
                        <p>{{ __("Copyright") }} &copy; {{ date('Y') }}, {{ __("All Rights Reserved By") }} <a href="{{ setRoute('frontend.index') }}">{{ $basic_settings->site_name }}</a>
                    </div>
                </div>
            </div>
        </div>
    </div>
</footer>
<!--~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    End Footer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
Payment System
top

Simple Steps to Complete Your Payment Securely and Efficiently

Making a payment on our website is quick and secure. Start by logging in or creating an account. Select your preferred payment method, input the required details, and review the information. Once you confirm everything is correct, click on the "Submit Payment" button. You’ll receive instant confirmation and can track your payment status through your account dashboard. It’s an easy and secure process.

  • Go to the Payment Section: Access the payment area on our website or app.
  • Choose Your Payment Method: Select your preferred payment option.
  • Enter Payment Details: Provide the necessary payment information.
  • Verify Your Information: Check that all details are correct.
  • Confirm Your Payment: Click "Submit Payment" to complete the transaction.
img