Order History View and Track Orders
This commit is contained in:
@ -88,7 +88,20 @@
|
||||
<script src={{ URL::asset('js/mixitup.min.js') }}></script>
|
||||
<script src={{ URL::asset('js/owl.carousel.min.js') }}></script>
|
||||
<script src={{ URL::asset('js/main.js') }}></script>
|
||||
</body>
|
||||
<script src="https://code.jquery.com/jquery-3.6.3.min.js"
|
||||
integrity="sha256-pvPw+upLPUjgMXY0G+8O0xUf+/Im1MZjXxxgOcBQBXU=" crossorigin="anonymous"></script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{{-- Datatables script --}}
|
||||
<script src="//cdn.datatables.net/2.0.8/js/dataTables.min.js"></script>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('#myTable').DataTable();
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function() {
|
||||
@ -107,6 +120,8 @@
|
||||
}, 2000); // 2000 milliseconds = 3 seconds
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
|
||||
|
||||
</html>
|
||||
|
@ -22,8 +22,24 @@
|
||||
<link rel="stylesheet" href="{{ URL::asset('css/owl.carousel.min.css') }}"type="text/css">
|
||||
<link rel="stylesheet" href="{{ URL::asset('css/slicknav.min.css') }}" type="text/css">
|
||||
<link rel="stylesheet" href="{{ URL::asset('css/style.css') }}" type="text/css">
|
||||
<!-- Include the Stripe.js library -->
|
||||
<script src="https://js.stripe.com/v3/"></script>
|
||||
|
||||
|
||||
{{-- bootstrap --}}
|
||||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.1.3/js/bootstrap.bundle.min.js"></script>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
</head>
|
||||
|
||||
<!-- Include the Stripe.js library -->
|
||||
<script src="https://js.stripe.com/v3/"></script>
|
||||
|
||||
<!-- datatables-->
|
||||
<link rel="stylesheet" href="//cdn.datatables.net/2.0.8/css/dataTables.dataTables.min.css">
|
||||
{{-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.3.0/css/bootstrap.min.css"> --}}
|
||||
<link rel="stylesheet" href="https://cdn.datatables.net/2.0.8/css/dataTables.bootstrap5.css">
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@ -78,10 +94,10 @@
|
||||
<div class="header__top__links">
|
||||
|
||||
@if (session()->has('id'))
|
||||
<a href="{{ URL::to('/logout') }}">Logout</a>
|
||||
<a href="{{ route('logout') }}">Logout</a>
|
||||
@else
|
||||
<a href="{{ URL::to('/login') }}">Login</a>
|
||||
<a href="{{ URL::to('/register') }}">Register</a>
|
||||
<a href="{{ route('login') }}">Login</a>
|
||||
<a href="{{ route('register') }}">Register</a>
|
||||
@endif
|
||||
{{-- <a href="{{ URL::to('/register') }}">Sign in</a>
|
||||
<a href="{{ URL::to('/login') }}">Login</a> --}}
|
||||
@ -103,21 +119,22 @@
|
||||
<div class="row">
|
||||
<div class="col-lg-3 col-md-3">
|
||||
<div class="header__logo">
|
||||
<a href="{{ URL::to('/') }}"><img src="{{ URL::asset('img/logo.png') }}" alt=""></a>
|
||||
<a href="{{ route('/') }}"><img src="{{ URL::asset('img/logo.png') }}" alt=""></a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6">
|
||||
<nav class="header__menu mobile-menu">
|
||||
<ul>
|
||||
<li class="active"><a href="{{ URL::to('/') }}">Home</a></li>
|
||||
<li><a href="{{ URL::to('shop') }}">Shop</a></li>
|
||||
<li><a href="{{ route('/') }}">Home</a></li>
|
||||
<li><a href="{{ route('shop') }}">Shop</a></li>
|
||||
<li><a href="#">Pages</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="{{ URL::to('about') }}">About Us</a></li>
|
||||
<li><a href="{{ route('about') }}">About Us</a></li>
|
||||
{{-- <li><a href="{{ URL::to('singleProduct') }}">Single Product</a></li> --}}
|
||||
<li><a href="{{ URL::to('cart') }}">Shopping Cart</a></li>
|
||||
<li><a href="{{ URL::to('checkout') }}">Check Out</a></li>
|
||||
<li><a href="{{ URL::to('profile') }}">Profile</a></li>
|
||||
<li><a href="{{ route('cart') }}">Shopping Cart</a></li>
|
||||
<li><a href="{{ route('checkout') }}">Check Out</a></li>
|
||||
<li><a href="{{ route('myOrders') }}">My Orders</a></li>
|
||||
<li><a href="{{ route('profile') }}">Profile</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
@ -130,7 +147,7 @@
|
||||
<a href="#" class="search-switch"><img src="{{ URL::asset('img/icon/search.png') }}"
|
||||
alt=""></a>
|
||||
<a href="#"><img src="{{ URL::asset('img/icon/heart.png') }}" alt=""></a>
|
||||
<a href="{{ URL::to('cart') }}"><img src="{{ URL::asset('img/icon/cart.png') }}"
|
||||
<a href="{{ route('cart') }}"><img src="{{ URL::asset('img/icon/cart.png') }}"
|
||||
alt="">
|
||||
<span>0</span></a>
|
||||
<div class="price">Rs 0.00</div>
|
||||
|
Reference in New Issue
Block a user