@extends('frontend.layouts.contentLayoutMaster') @section('title','消費紀錄') @section('active', 'purchase') @section('vendor-styles') @endsection @section('page-styles') @endsection @section('content')
{{-- 電腦 --}}
{{--

列表

--}}
{{-- --}} @if ($purchases->isNotEmpty()) @foreach ($purchases as $purchase) {{-- --}} @endforeach @else @include('frontend.panels.list-no-data') @endif
門店 日期 金額 狀態 明細訂單編號
{{ $purchase->firm_service->name }} {{ $purchase->purchase_at->format('Y/m/d') }} $ {{ number_format($purchase->total) }} {{ $status[is_null($purchase->deleted_at)] }} {{ $purchase->order_code }}
{{-- 平版 + 手機 --}}
{{--

列表

--}}
@if ($purchases->isNotEmpty()) @foreach ($purchases as $purchase) @endforeach @else @include('frontend.panels.list-no-data') @endif

消費紀錄

{{ $purchase->firm_service->name }}
{{ $purchase->purchase_at->format('Y/m/d') }}
$ {{ number_format($purchase->total) }}
{{ $status[is_null($purchase->deleted_at)] }}
@endsection @section('vendor-scripts') @endsection @section('page-scripts') @endsection