@extends('frontend.layouts.contentLayoutMaster') @section('title', '折價券') @section('active', 'vouchers') @section('vendor-styles') @endsection @section('page-styles') @endsection @section('content') @if ($vouchers->isNotEmpty()) @foreach ($vouchers as $voucher) {{ $voucher->code }} {{ $voucher->metadata['name'] ?? '' }} {{ $voucher->metadata['caption'] ?? '' }} @if (!empty($voucher->expires_at)) 至 {{ $voucher->expires_at->format('Y.m.d') }} @endif $ {{ number_format($voucher->amount) }} @endforeach @else 您目前沒有折價券 取得折價券後,即可在此查看折價券資訊 @endif @endsection @section('vendor-scripts') @endsection @section('page-scripts') @endsection
{{ $voucher->code }}