����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.15.187.189 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/resources/views/instructor/finance/ |
Upload File : |
<!DOCTYPE html> <html lang="en"> <head> <title>{{ __('Invoice') }}</title> <link href="{{ asset('frontend/assets/vendor/bootstrap/css/bootstrap.min.css') }}" rel="stylesheet"> <link href="{{ asset('frontend/assets/vendor/fontawesome-free/css/all.min.css') }}" rel="stylesheet" type="text/css"> </head> <body> <div id="print-div" style="background-color: #ffffff; margin-left: auto; margin-right: auto; box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);"> <table style="border-collapse: collapse; width: 100%; font-family: 'Arial', sans-serif"> <tbody> <tr> <td style="padding: 16px;"> <!--====== Clear fix ===========--> <div style="display: block; clear: both;"></div> <div style="display: block"> <div style="margin: 0 0 1.5rem 0; display: inline-block;"> <h4 style="margin: 0 0 0.3rem 0; color: #666666">{{ __('Payment Receipt Invoice') }}</h4> <p style="margin: 4px 0; color: #666666; font-size: 14px;">{{get_option('app_name')}}</p> <p style="margin: 4px 0; color: #666666; font-size: 14px;">{{get_option('app_email')}}</p> <p style="margin: 4px 0; color: #666666; font-size: 14px;">{{get_option('app_contact_number')}}</p> </div> <div style="margin: 0 0 1.5rem 0; display: inline-block; float: right"> <h2 style="margin: 8px 0; color: #666666; font-size: 24px;">#{{$withdraw->transection_id}}</h2> <p style="margin: 4px 0; color: #666666; font-size: 14px;">{{ __('Payment Date') }} //</p> <p style="margin: 4px 0; color: #666666; font-size: 16px;">{{$withdraw->updated_at->format(get_option('app_date_format'))}}</p> </div> </div> <!--====== Clear fix ===========--> <div style="display: block; clear: both;"></div> <!--================= Table ====================--> <table style="border-collapse: collapse; width: 100%; font-size: 14px; margin-top: 25px; box-sizing: border-box"> <thead> <tr style="background-color: #D5D7DC"> <th style="font-weight: normal; text-align: left; padding: 12px 16px">{{ __('Request Date') }}</th> <th style="font-weight: normal; text-align: left; padding: 12px 16px">{{ __('Payment Date') }}</th> <th style="font-weight: normal; text-align: left; padding: 12px 16px">{{ __('Payment Beneficiary') }}</th> <th style="font-weight: normal; text-align: center; padding: 12px 16px">{{ __('Amount') }}</th> </tr> </thead> <tbody style="color: #444444"> <tr style="border-bottom: 1px solid #dddddd"> <td style="text-align: left; padding: 12px 16px">{{$withdraw->created_at->format(get_option('app_date_format'))}}</td> <td style="text-align: left; padding: 12px 16px">{{$withdraw->updated_at->format(get_option('app_date_format'))}}</td> <td style="text-align: left; padding: 12px 16px">{!! getBeneficiaryDetails($withdraw->beneficiary) !!}</td> <td style="text-align: center; padding: 12px 16px"> @if(get_currency_placement() == 'after') {{$withdraw->amount}} {{ get_currency_code() }} @else {{ get_currency_code() }} {{$withdraw->amount}} @endif </td> </tr> </tbody> </table> </td> </tr> </tbody> <tfoot> <tr> <td style="padding: 24px 16px;"> <div style="border-top: 1px dotted; border-bottom: 1px dotted; border-color: #dddddd; padding: 16px 4px; margin-bottom: 24px"> <h4 style="margin: 0 0 8px 0; color: #666666;">Note</h4> <p style="color: #666666; margin: 0; font-size: 14px">{!! $withdraw->note !!}.</p> </div> <p style="margin-bottom: 12px; margin-top: 0; text-align: center; color: #666666">{{ __('We thank you for your business and continued use of') }} {{get_option('app_name')}}</p> <h2 style="text-align: center; color: #666666; font-weight: 600; margin-top: 0; margin-bottom: 0">{{ __('Thank you from') }} {{get_option('app_name')}} {{ __('family') }}</h2> <button style="" type="button" onclick="" class="btn btn-warning btn-icon icon-left float-end print-button"><i class="fas fa-print"></i> Print</button> </td> </tr> </tfoot> </table> </div> <script src="{{ asset('frontend/assets/vendor/jquery/jquery-3.6.0.min.js') }}"></script> <script src="{{ asset('frontend/assets/vendor/bootstrap/js/bootstrap.min.js') }}"></script> <script> printDiv() function printDiv(){ $(".print-button").hide(); var DocumentContainer = document.getElementById('print-div'); var WindowObject = window.open('', "PrintWindow", "width=750,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes"); WindowObject.document.writeln(DocumentContainer.innerHTML); WindowObject.document.close(); WindowObject.focus(); WindowObject.print(); WindowObject.close(); } </script> </body> </html>