@extends('layouts.admin_layout') @section('title', 'Manage Registrations') @section('content')

Manage Registrations

@foreach($registrations as $registration_row) @endforeach
Name Email ID Mobile Number Notification Action
{{$registration_row->user_first_name}} {{$registration_row->user_last_name}} {{$registration_row->user_email_id}} {{$registration_row->user_mobile_number}} {{$registration_row->notification_title}} @if(!empty($auth_write_status)) Edit @endif
@endsection