@extends('Admin.component.layout')
@section('title', '活動列表')
@section('content')
| 活動名稱 |
起始日 |
結束日 |
活動代號 |
新增活動 |
@forelse ($Lists ?? [] as $List)
@php
$hasWinner = DB::table('winner')->where('ActivityGuid', $List->ActivityGuid)->exists();
@endphp
| {{ $List->title }} |
{{ $List->StartDate }} |
{{ $List->EndDate }} |
{{ $List->api }} |
中獎列表
@if (!$hasWinner)
編輯
@endif
複製
刪除
|
@empty
| 尚無活動 |
@endforelse
@if($Lists != [])
@endif
@if(request()->has('alert_message'))
@endif
@stop