{{-- Extends layout --}}
@extends('layout.default')
{{-- Content --}}
@section('content')
@if(count($currentparticipants)>0)
| Action |
Name |
Gender |
DOB |
level |
@foreach ($currentparticipants as $row)
|
|
{{$row->name}} |
{{$row->Gender}} |
{{$row->dob}} |
{{$row->level}} |
@endforeach
@endif
@if(count($oldparticipants)>0)
| Action |
Name |
Gender |
DOB |
@foreach ($oldparticipants as $row)
|
Register
|
{{$row->name}} |
{{$row->Gender}} |
{{$row->dob}} |
@endforeach
@endif
@endsection
{{-- Styles Section --}}
@section('styles')
@endsection
{{-- Scripts Section --}}
@section('scripts')
{{-- vendors --}}
@endsection