102 lines
5.5 KiB
PHP
102 lines
5.5 KiB
PHP
@extends('layout.master')
|
||
|
||
@section('body-class', 'page-account')
|
||
|
||
@section('content')
|
||
<div class="container">
|
||
|
||
<x-shop-breadcrumb type="static" value="account.index" />
|
||
|
||
<div class="row">
|
||
|
||
<x-shop-sidebar />
|
||
|
||
<div class="col-12 col-md-9">
|
||
@if (\Session::has('success'))
|
||
<div class="alert alert-success">
|
||
<ul>
|
||
<li>{!! \Session::get('success') !!}</li>
|
||
</ul>
|
||
</div>
|
||
@endif
|
||
@if (0)
|
||
<div class="card mb-4 account-card">
|
||
<div class="card-header d-flex justify-content-between align-items-center">
|
||
<h5 class="card-title">{{ __('shop/account.index') }}</h5>
|
||
<a href="{{ shop_route('account.edit.index') }}" class="text-muted">{{ __('shop/account.revise_info') }}</a>
|
||
</div>
|
||
<div class="card-body">
|
||
<div class="d-flex flex-nowrap card-items py-2">
|
||
<a href="{{ shop_route('account.wishlist.index') }}" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted">{{ __('shop/account.collect') }}</span></a>
|
||
<a href="http://" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted">{{ __('shop/account.coupon') }}</span></a>
|
||
<a href="http://" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted">{{ __('shop/account.coupon') }}</span></a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
@endif
|
||
<div class="card account-card">
|
||
<div class="card-header d-flex justify-content-between align-items-center">
|
||
<h5 class="card-title">{{ __('shop/account.my_order') }}</h5>
|
||
<a href="{{ shop_route('account.order.index') }}" class="text-muted">{{ __('shop/account.orders') }}</a>
|
||
</div>
|
||
<div class="card-body">
|
||
<div class="d-flex flex-nowrap card-items mb-4 py-3">
|
||
<a href="{{ shop_route('account.order.index', ['status' => 'unpaid']) }}" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted text-center">{{ __('shop/account.pending_payment') }}</span></a>
|
||
<a href="{{ shop_route('account.order.index', ['status' => 'paid']) }}" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted text-center">{{ __('shop/account.pending_send') }}</span></a>
|
||
<a href="{{ shop_route('account.order.index', ['status' => 'shipped']) }}" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted text-center">{{ __('shop/account.pending_receipt') }}</span></a>
|
||
<a href="{{ shop_route('account.rma.index') }}" class="d-flex flex-column align-items-center"><i class="iconfont"></i><span
|
||
class="text-muted text-center">{{ __('shop/account.after_sales') }}</span></a>
|
||
</div>
|
||
<div class="order-wrap">
|
||
@if (!count($latest_orders))
|
||
<div class="no-order d-flex flex-column align-items-center">
|
||
<div class="icon mb-2"><i class="iconfont"></i></div>
|
||
<div class="text mb-3 text-muted">{{ __('shop/account.no_order') }}<a href="">{{ __('shop/account.to_buy') }}</a></div>
|
||
</div>
|
||
@else
|
||
{{-- <p class="text-muted">近期订单</p> --}}
|
||
<ul class="list-unstyled orders-list table-responsive">
|
||
<table class="table table-hover">
|
||
<tbody>
|
||
@foreach ($latest_orders as $order)
|
||
<tr class="align-middle">
|
||
<td style="width: 62px">
|
||
<div class="img border wh-60 d-flex justify-content-between align-items-center">
|
||
<img src="{{ $order->orderProducts[0]->image ?? '' }}" class="img-fluid">
|
||
</div>
|
||
</td>
|
||
<td>
|
||
<div class="mb-2">{{ __('shop/account.order_number') }}:<span style="width: 110px;display: inline-block;">{{ $order->number }}</span> <span class="vr lh-1 me-2 bg-secondary"></span> {{ __('shop/account.all') }} {{ count($order->orderProducts) }} {{ __('shop/account.items') }}</div>
|
||
<div class="text-muted">{{ __('shop/account.order_time') }}:{{ $order->created_at }}</div>
|
||
</td>
|
||
<td>
|
||
<span class="ms-4 d-inline-block">{{ __('shop/account.state') }}:{{ $order->status_format }}</span>
|
||
</td>
|
||
<td>
|
||
<span class="ms-3 d-inline-block">{{ __('shop/account.amount') }}:{{ currency_format($order->total, $order->currency_code, $order->currency_value) }}</span>
|
||
</td>
|
||
|
||
<td>
|
||
<a href="{{ shop_route('account.order.show', ['number' => $order->number]) }}"
|
||
class="btn btn-outline-secondary btn-sm">{{ __('shop/account.check_details') }}</a>
|
||
</td>
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
</ul>
|
||
@endif
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
@endsection
|