@extends('admin.layouts.main') @push('page-title') Form Submissions - Admin @endpush @section('content')

Form Submissions

Contact Form Submissions
@foreach($unreadContactFormSubmissions as $cfsUnread) @endforeach
From Email Message Date Received Status Actions
{{ $cfsUnread->first_name }} {{ $cfsUnread->last_name }} {{ $cfsUnread->email_address }} {{ Str::limit($cfsUnread->message, 50) }} {{ date('d/m/Y', strtotime($cfsUnread->created_at)) }} Read
@foreach($readContactFormSubmissions as $cfsRead) @endforeach
From Email Message Date Received Status Actions
{{ $cfsRead->first_name }} {{ $cfsRead->last_name }} {{ $cfsUnread->email_address }} {{ Str::limit($cfsRead->message, 50) }} {{ date('d/m/Y', strtotime($cfsRead->created_at)) }} Read
Masterclass Booking Submissions
@foreach($notBookedMasterclassFormSubmissions as $mcNotBooked) @endforeach
Name Email Session name Date Time Status Actions
{{ $mcNotBooked->first_name }} {{ $mcNotBooked->last_name }} {{ $mcNotBooked->email }} {{ $mcNotBooked->session_masterclass_name }} {{ date('d/m/Y', strtotime($mcNotBooked->date_of_masterclass)) }} {{ date('H:i', strtotime($mcNotBooked->time_of_masterclass)) }} Not Booked
@foreach($bookedMasterclassFormSubmissions as $mcBooked) @endforeach
Name Email Session name Date Time Status Actions
{{ $mcBooked->first_name }} {{ $mcBooked->last_name }} {{ $mcBooked->email }} {{ $mcBooked->session_masterclass_name }} {{ date('d/m/Y', strtotime($mcBooked->date_of_masterclass)) }} {{ date("H:i", strtotime($mcBooked->time_of_masterclass)) }} Booked
@endsection