Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.189
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
sdgamatya /
resources /
views /
emails /
[ HOME SHELL ]
Name
Size
Permission
Action
message
[ DIR ]
drwxr-xr-x
quotation.blade.php
3.26
KB
-rw-rw-r--
quotation_old.blade.php
3.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : quotation_old.blade.php
<!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="{{URL::to('public/bootstrap/css/bootstrap.min.css')}}"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <!-- Bootstrap 3.3.6 --> <script src="{{ URL::to('public/bootstrap/js/bootstrap.min.js') }}"></script> <div class="container"> <section class="content-header"> <h1>Order</h1> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{url('/admin')}}"><i class="fa fa-dashboard"></i>Dashboard</a></li> <li class="breadcrumb-item"><a href="{{url('/admin/banners')}}">Order </a></li> </ol> </section> <section class="content"> <div class="row"> <div class="col-xs-12"> <div class=""> <div class=""> @if($errors->any()) <div class="alert alert-danger"> @foreach($errors->all() as $error) <p>{{ $error }}</p> @endforeach </div> @endif <div class="col-md-12"> <div class="form-group"> <label>Name: {{$order->customer->name}}</label> </div> <div class="form-group"> <label>Email: {{$order->customer->email}}</label> </div> <div class="form-group"> <label>Phone: {{$order->customer->phone}}</label> </div> <div class="form-group"> <label>Address: {{$order->customer->address}}</label> </div> </div> <table class="table table-bordered"> <thead> <th>S.No</th> <th>Product</th> <th>Rate</th> <th>Quantity</th> <th>Total</th> </thead> <tbody> @php $i = 1; $grandTotal = 0; @endphp @foreach($order->orderDetails as $orderItem) <tr> @php $subTotal = 0; @endphp <td>{{$i++}}</td> <td>{{$orderItem->product->name}}</td> @if($order->type == \App\Http\Helpers\Constants::ORDER_TYPE_RENTAL) <td>{{$orderItem->product->productRate->rental_rate}}</td> @php $subTotal = $orderItem->qty * $orderItem->product->productRate->rental_rate; $grandTotal += $subTotal; @endphp @elseif($order->type == \App\Http\Helpers\Constants::ORDER_TYPE_FILLING) <td>{{$orderItem->product->productRate->refill_rate}}</td> @php $subTotal = $orderItem->qty * $orderItem->product->productRate->refill_rate; $grandTotal += $subTotal; @endphp @elseif($order->type == \App\Http\Helpers\Constants::ORDER_TYPE_SELLING) <td>{{$orderItem->product->productRate->selling_rate}}</td> @php $subTotal = $orderItem->qty * $orderItem->product->productRate->selling_rate; $grandTotal += $subTotal; @endphp @endif <td>{{$orderItem->qty}}</td> <td>{{$subTotal}}</td> </tr> @endforeach <tr> <td colspan="4"> <b>Total </b></td> <td>{{$grandTotal}}</td> </tr> </tbody> </table> <div class="form-group" style="margin-left: 2px;"> <a class="btn btn-primary" href="{{asset('admin/order/'.$order->id.'/send')}}"><i class="fa fa-paper-plane"></i> Send</a> </div> </div> </div> </div> </div> </section> </div>
Close