{{-- Extends layout --}} @extends('layout.default') {{-- Content --}} @section('content')

{{ config('global.participanttype') }} List

@if(session()->has('message'))
{{ session()->get('message') }}
@endif
@foreach ($registrations as $row) @endforeach
ID Name Gender DOB City Phone Email Actions
{{ $row ->id }} {{ $row ->participant_name }} {{ $row ->gender }} {{ date("d-m-Y", strtotime($row ->dob)) }} {{ $row ->city }} {{ $row ->phone_no }} {{ $row ->email }}
{{ method_field('DELETE') }} {{ csrf_field() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') {{-- vendors --}} {{-- page scripts --}} @endsection