@extends('layouts.master') @section('content')
Participant list
{{$comp}}

@php $bgColors = [ 'Open' => 'green', 'Pelajar' => 'blue', 'Master' => 'red', 'default' => 'gray' ]; $bgColors1 = [ 'EARLY BIRD' => 'purple', 'NORMAL' => 'yellow', 'TIER2' => 'magenta', 'default' => 'gray' ]; @endphp @foreach($list as $key => $value) @php $bg = $bgColors[$value->participant_name] ?? $bgColors['default']; $bg1 = $bgColors1[$value->category_ticket_name] ?? $bgColors1['default']; @endphp @endforeach
No Participant name Quota Prefix BIB Number Male Prefix BIB Number Female Age of Age up to Aksi
{{ ++$key }} {{ $value->ticket_name }} - {{ $value->category_ticket_name }} - {{ $value->participant_name }} {{ $value->quota_participant_event }} {{ $value->bib_number_male }} {{ $value->bib_number_female }} {{ $value->age_of }} {{ $value->age_up_to }}
@section('script') {{-- update js --}} {{-- delete js --}} @endsection @endsection