@extends('layouts.default') @section('content')
@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif @foreach ($reportedEvents as $report) @endforeach
No. Reported By Event Title Theme of Event Location Start Date End Date Actions
{{ $report->id }} {{ $report->reportBy->name ?? null }} ({{ $report->reportBy->email ?? null }}) {{ $report->event->event_title ?? null }} {{ $report->event->theme_of_event ?? null }} {{ $report->event->location ?? null }} {{ \Carbon\Carbon::parse($report->event->start_date_time ?? null)->format('Y-m-d H:i') }} {{ \Carbon\Carbon::parse($report->event->end_date_time ?? null)->format('Y-m-d H:i') }} Details
@csrf
@stop