@include('links.header')

Entries for Checkout


Entry Information

@if(env('EXCEPTIONAL_AWARD_ID') == session('top_menu_event_id'))

Once the entry is submitted, no changes possible.

@else

Double check on the Entry ID, Title Brand, Category, Price of all the entries which are ready to proceed to checkout.

Once the entry is submitted, no changes possible.

Make your payment directly into our bank account. Please use your ID as the payment reference.

Double check on the billing details to avoid any mistakes on the invoices.

Once the invoice is generated, it cannot be canceled.

@endif
@php $amount=0; $today = strtotime(date('Y-m-d')); $early_bird_end_date = strtotime($event_detail->early_bird_fee_end_date); if($early_bird_end_date >= $today){ $amount = $event_detail->amount; } else{ $amount = $event_detail->late_entry_fee ; } @endphp @if(!empty($entries)) @foreach($entries AS $entry) @endforeach @endif
Entry ID Title Category Sub Category Price
{{ $entry->entry_id }} {{ $entry->title }} {{ $entry->category_type }} {{ $entry->category }} {{ $amount }}


@if(env('EXCEPTIONAL_AWARD_ID') != session('top_menu_event_id'))
Subtotal : 0
Gst : 0
Total : 0

Billing Details

@endif
@csrf @if(env('EXCEPTIONAL_AWARD_ID') != session('top_menu_event_id'))
@endif
@if(env('EXCEPTIONAL_AWARD_ID') != session('top_menu_event_id'))
@endif
Add Another Entry
  
Proceed to Checkout

Please Select Entries from above


@include('links.footer')