@extends('layout') @section('title','Add Business Partner') @section('content')

Add Business Partner

@csrf

Basic Information

Business Information

NOTE - Upload Business Logo

@if(isset($business_edit)) @endif

Wallet Money

Either you have collected this amount or giving the free amount to the Business partner as a welcome bonus.




Transaction Detail

Please mention the Transaction / UTR number for the amount which you have received


Transaction Date

Please mention the Transaction / UTR date



Transaction Proof

Please upload the Transaction screenshot for the future reference.


@if(isset($business_edit)) @endif

Assign / Allocate Lotteries


@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