@extends('admin.layout') @section('title', 'Registrations') @section('page_heading', 'Registrations') @section('content')
@forelse($registrations as $reg) @empty @endforelse
# Type Name / Organization Email Phone Designation State / City Sport Message Registered At Action
{{ $loop->iteration }} {{ ucfirst($reg->type ?? 'individual') }} {{ $reg->name }} {{ $reg->email }} {{ $reg->phone }} {{ $reg->designation ?? '—' }} {{ $reg->city }}@if($reg->state), {{ $reg->state }}@endif {{ $reg->sport ?? '—' }} {{ $reg->message ? \Illuminate\Support\Str::limit($reg->message, 60) : '—' }} {{ $reg->created_at->format('d M Y') }}
View Edit
@csrf @method('DELETE')
No registrations yet.
{{-- --}} @endsection @push('scripts') @endpush