67 lines
2.1 KiB
PHP
67 lines
2.1 KiB
PHP
@extends('layouts.frontend')
|
|
@section('title', 'Order Items')
|
|
@section('content')
|
|
<div class="breadcrumb-area pt-205 breadcrumb-padding pb-210" style="background-image: url({{ asset('frontend/assets/img/bg/breadcrumb.jpg') }})">
|
|
<div class="container-fluid">
|
|
<div class="breadcrumb-content text-center">
|
|
<h2>My Order</h2>
|
|
<ul>
|
|
<li><a href="{{ url('/') }}">home</a></li>
|
|
<li>my orders</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="shop-page-wrapper shop-page-padding ptb-100">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-lg-3">
|
|
<h3 class="sidebar-title">User Menu</h3>
|
|
<div class="sidebar-categories">
|
|
<ul>
|
|
<li><a href="{{ route('profile.index') }}">Profile</a></li>
|
|
<li><a href="{{ route('orders.index') }}">Orders</a></li>
|
|
<li><a href="{{ route('favorite.index') }}">Favorites</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-9">
|
|
<div class="shop-product-wrapper res-xl">
|
|
<div class="table-content table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<th>Order ID</th>
|
|
<th>Grand Total</th>
|
|
<th>Status</th>
|
|
<th>Payment</th>
|
|
<th>Action</th>
|
|
</thead>
|
|
<tbody>
|
|
@forelse ($orders as $order)
|
|
<tr>
|
|
<td>
|
|
{{ $order->code }}<br>
|
|
<span style="font-size: 12px; font-weight: normal"> {{ $order->order_date }}</span>
|
|
</td>
|
|
<td>{{ number_format($order->base_total_price, 0, '.', '.') }}</td>
|
|
<td>{{ $order->status }}</td>
|
|
<td>{{ $order->payment_status }}</td>
|
|
<td>
|
|
<a href="{{ route('orders.show', $order->id) }}" class="btn btn-info btn-sm">details</a>
|
|
</td>
|
|
</tr>
|
|
@empty
|
|
<tr>
|
|
<td colspan="5">No records found</td>
|
|
</tr>
|
|
@endforelse
|
|
</tbody>
|
|
</table>
|
|
{{ $orders->links() }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |