One Hat Cyber Team
Your IP :
18.218.99.99
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
bizcento.com
/
resources
/
views
/
pdf
/
View File Name :
membership.blade.php
@php use Illuminate\Support\Carbon; @endphp <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Invoice</title> <link rel="stylesheet" href="{{asset('assets/front/css/membership-pdf.css')}}"> </head> <body> <div class="main"> <table class="heading"> <tr> <td> @if($bs->logo) <img loading="lazy" src="{{asset('assets/front/img/'.$bs->logo)}}" height="40" class="d-inline-block"> @else <img loading="lazy" src="{{asset('assets/admin/img/noimage.jpg')}}" height="40" class="d-inline-block"> @endif </td> <td class="text-right strong invoice-heading">INVOICE</td> </tr> </table> <div class="header"> <div class="ml-20"> <table class="text-left"> <tr> <td class="strong small gry-color">Bill to:</td> </tr> <tr> <td class="strong">{{ucfirst($member["first_name"]).' '.ucfirst($member["last_name"])}}</td> </tr> <tr> <td class="gry-color small"><strong>Username: </strong>{{$member["username"]}}</td> </tr> <tr> <td class="gry-color small"><strong>Email: </strong> {{$member["email"]}}</td> </tr> <tr> <td class="gry-color small"><strong>Phone: </strong> {{$phone}}</td> </tr> </table> </div> <div class="order-details"> <table class="text-right"> <tr> <td class="strong">Order Details:</td> </tr> <tr> <td class="gry-color small"><strong>Order ID:</strong> #{{$order_id}}</td> </tr> @if ($membership->discount > 0) <tr> <td class="gry-color small"><strong>Package Price:</strong> {{$membership->package_price == 0 ? "Free": $membership->package_price}} </td> </tr> <tr> <td class="gry-color small"><strong>Discount:</strong> -<span >{{$membership->discount}}</span></td> </tr> @endif <tr> <td class="gry-color small"><strong>Total:</strong> {{$amount}}</td> </tr> <tr> <td class="gry-color small"><strong>Payment Method:</strong> {{$request['payment_method']}}</td> </tr> <tr> <td class="gry-color small"><strong>Payment Status:</strong>Completed</td> </tr> <tr> <td class="gry-color small"><strong>Order Date:</strong> {{Carbon::now()->format('d/m/Y')}}</td> </tr> </table> </div> </div> <div class="package-info"> <table class="padding text-left small border-bottom"> <thead> <tr class="gry-color info-titles"> <th width="20%">Package Title</th> <th width="20%">Start Date</th> <th width="20%">Expire Date</th> <th width="20%">Currency</th> <th width="20%">Total</th> </tr> </thead> <tbody class="strong"> <tr class="text-center"> <td>{{$package_title}}</td> <td>{{$request['start_date']}}</td> <td>{{\Carbon\Carbon::parse($request['expire_date'])->format('Y') == "9999" ? "Lifetime" : $request['expire_date']}}</td> <td>{{$base_currency_text}}</td> <td> {{$amount == 0 ? "Free": $amount}} </td> </tr> </tbody> </table> </div> <table class="mt-80"> <tr> <td class="text-right regards">Thanks & Regards,</td> </tr> <tr> <td class="text-right strong regards">{{ $bs->website_title }}</td> </tr> </table> </div> </body> </html>