@extends('Admin.component.layout') @section('title', '活動列表') @section('content')

活動列表

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