⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.140
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
smarbgfw
/
.trash
/
core
/
resources
/
views
/
user
/
View File Name :
order.blade.php
@extends('user.layout') @section('pagename') - {{__('Orders')}} @endsection @section('content') <!-- hero area start --> <div class="breadcrumb-area services service-bg" style="background-image: url('{{asset ('assets/front/img/' . $bs->breadcrumb)}}');background-size:cover;"> <div class="container"> <div class="breadcrumb-txt"> <div class="row"> <div class="col-xl-7 col-lg-8 col-sm-10"> <h1>{{__('Product Orders')}}</h1> <ul class="breadcumb"> <li><a href="{{route('user-dashboard')}}">{{__('Dashboard')}}</a></li> <li>{{__('Product Orders')}}</li> </ul> </div> </div> </div> </div> <div class="breadcrumb-area-overlay"></div> </div> <!-- hero area end --> <!--====== CHECKOUT PART START ======--> <section class="user-dashbord"> <div class="container"> <div class="row"> @include('user.inc.site_bar') <div class="col-lg-9"> <div class="row"> <div class="col-lg-12"> <div class="user-profile-details"> <div class="account-info"> <div class="title"> <h4>{{__('Product Orders')}}</h4> </div> <div class="main-info"> <div class="main-table"> <div class="table-responsiv"> <table id="ordersTable" class="dataTables_wrapper dt-responsive table-striped dt-bootstrap4" style="width:100%"> <thead> <tr> <th>{{__('Order number')}}</th> <th>{{__('Date')}}</th> <th>{{__('Total Price')}}</th> <th>{{__('Action')}}</th> </tr> </thead> <tbody> @if($orders) @foreach ($orders as $order) <tr> <td>{{$order->order_number}}</td> <td>{{$order->created_at->format('d-m-Y')}}</td> <td>{{$bex->base_currency_symbol_position == 'left' ? $bex->base_currency_symbol : ''}} {{$order->total}} {{$bex->base_currency_symbol_position == 'right' ? $bex->base_currency_symbol : ''}}</td> <td><a href="{{route('user-orders-details',$order->id)}}" class="btn base-bg text-white">{{__('Details')}}</a></td> </tr> @endforeach @else <tr class="text-center"> <td colspan="4"> {{__('No Orders')}} </td> </tr> @endif </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- footer section start --> @endsection @section('scripts') <script> $(document).ready(function() { $('#ordersTable').DataTable({ responsive: true, ordering: false }); }); </script> @endsection