@extends('layout') @section('title','Assign Lotteries') @section('content')

Assign Lotteries

@csrf

Basic Information

Assign / Allocate Lotteries {{$business_edit->poc_first_name}}


@foreach($lottery as $lotterys) @php $selectedLottery = explode(',', $business_edit->lottery_id ?? ''); // Convert to array @endphp @endforeach
Lottery Name Region Country Price Status
status == 0) disabled @endif {{ in_array($lotterys->id, $selectedLottery) ? 'checked' : '' }}>
{{$lotterys->lottery_name}} {{$lotterys->region_name}} {{$lotterys->country_name}} {{$lotterys->price}} @if($lotterys->status == 0) {{'In-Active'}} @else {{'Active'}} @endif
@if(isset($business_edit)) @else @endif
@endsection