@extends('admin.layouts.contentLayoutMaster') @section('title', '折價券') @section('vendor-styles') @endsection @section('page-styles') @endsection @section('content') {{-- search bar --}}

搜尋

列表

@can('會員管理-折價券列表-編輯') @endcan
@if ($vouchers->isNotEmpty()) @foreach ($vouchers as $voucher) @endforeach @else @include('admin.panels.list-no-data') @endif
券名/編碼 姓名 手機 派券時間 有效日期 使用狀態 操作
{!! $voucher->metadata['name'] !!} / {{ $voucher->code }} {{ optional(optional($voucher->owner)->user)->name }} {{ optional(optional($voucher->owner)->user)->mobile }} {{ $voucher->created_at->format('Y-m-d H:i') }} {{ $voucher->expires_at->format('Y-m-d H:i') }} @if ($voucher->isRedeemable() == true) 可使用 @elseif ($voucher->isRedeemed() == true) 已使用,於 {{ $voucher->redeemed_at }} @elseif ($voucher->isStarted() != true) 未啟用 @elseif ($voucher->isExpired() == true) 已過期 @else 無效 @endif
@csrf @method('DELETE') @if ($voucher->isRedeemable() == true) @can('會員管理-折價券列表-刪除') @endcan @endif
@endsection @section('vendor-scripts') @endsection @section('page-scripts') @endsection