@extends('Admin.component.layout')
@section('title', '中獎列表')
@section('content')
| 獎項 |
獎品名稱 |
中獎編號 |
重抽次數 |
匯出中獎名單
|
@forelse ($Lists ?? [] as $List)
| {{ $List->AwardName }} |
{{ $List->PrizeName }} |
{{ $List->code }} |
{{ $List->restar }} |
|
@empty
| 尚無中獎名單 |
@endforelse
{{ $Lists->links('pagination::bootstrap-4') }}
@if(request()->has('alert_message'))
@endif
@stop