@extends('foreground.layouts.frame') @section("titleBanner")

壹然 evernature

Banner首圖
會員專區
@endsection @section('body') @include("foreground.layouts.alert") @include('foreground.layouts.header', [ 'current' => '', ])
@include("foreground.profile.welcome-message.index")
{{-- 側邊欄 --}} @include("foreground.layouts.profile-sidebar")

消費紀錄

logout
@if(empty($orders->items()))

目前暫無紀錄,到商品專區逛逛吧!

前往商品專區
@else

查詢訂單

  • 消費日期
  • 訂單編號
  • 總價
  • 狀態
  • 詳情
  • 日期 / 編號
  • 總價 / 狀態
  • 詳情
    @foreach($orders as $order)
  • {{ $createdAt($order) }}
    {{ $orderNo($order) }}
    {{ $orderTotal($order) }}
    {{ $paymentStatus($order) }}
  • @endforeach
{{ $orders->withQueryString()->links('vendor.pagination.custom') }}
@endif
背景圖
背景圖
{{-- 舊的 --}} @if(false)
@include("foreground.profile.welcome-message.index")

會員功能

@include("foreground.layouts.profile-sidebar")

全部商品

  • 消費日期
  • 訂單編號
  • 總價
  • 狀態
  • 詳情
  • 日期 / 編號
  • 總價 / 狀態
  • 詳情
@foreach($orders as $order)
{{ $createdAt($order) }}
{{ $orderNo($order) }}
{{ $orderTotal($order) }}
{{ $paymentStatus($order) }}
@endforeach
{{ $orders->withQueryString()->links('vendor.pagination.custom') }}
@endif @include('foreground.layouts.footer') @endsection