{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content')
@if(session()->has('message'))
{{ session()->get('message') }}
@endif

{{ $eventdata[0]->Name }}

@if(count($currentparticipants)>0)
@foreach ($currentparticipants as $row) @endforeach
Action Name Gender DOB level
@csrf
{{$row->name}} {{$row->Gender}} {{$row->dob}} {{$row->level}}
@endif @if(count($oldparticipants)>0)
@foreach ($oldparticipants as $row) @endforeach
Action Name Gender DOB
Register {{$row->name}} {{$row->Gender}} {{$row->dob}}
@endif
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') {{-- vendors --}} @endsection