Файловый менеджер - Редактировать - /home/clickysoft/public_html/jmapi5.clickysoft.net/resources/views/layouts/reports/outstanding-orders.blade.php
Назад
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <title>Outstanding Orders Report</title> <style> .details > p { margin: 0; padding: 0; } .table-responsive { overflow-x: auto; } .thick-hr { border-top: 4px solid #000; margin: 20px 0; } .custom-font { font-size: 12px; } </style> </head> <body> <div class="row"> <div class="col-12 mt-5"> <div class="d-flex justify-content-between"> <div class="w-100"> <h3>J&M Trophies <span class="float-right">(Date: {{$data['date_range']}})</span></h3> <div class="font-weight-bold">Outstanding Orders Report</div> <hr class="border-4 thick-hr"> </div> </div> </div> <div class="col-12 mt-5"> <div class="table-responsive"> <table class="table table-striped custom-font"> <thead class=thead-dark> <tr> <th>Order Number</th> <th>Order Date</th> <th>Customer Name</th> <th>Customer Email</th> <th>PO Number</th> <th>Current Status</th> <th>Order Total</th> </tr> </thead> <tbody class=thead-dark> @foreach($data['data'] as $order) <tr> <td>{{$order['order_number']}}</td> <td>{{$order['created_at']->format('m-d-Y')}}</td> <td>{{$order['user']['name']}}</td> <td>{{$order['user']['email']}}</td> <td>{{$order['purchase_order_number'] ?? 'N/A'}}</td> <td>{{$order['current_status']->name}}</td> <td>{{'$'.$order['grand_total']}}</td> </tr> @endforeach </tbody> <tfoot> <tr class="border-top border-danger"> <td class="font-weight-bold" colspan="5"> </td> <th class="font-weight-bold">Grand Total</th> <th align="left">{{'$'.$data['total_amount']}}</th> </tr> </tfoot> </table> </div> </div> </div> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка