@extends('admin.layouts.master') @section('content') @if (session('success'))
{{ session('success') }}
@endif {{--

Deleted Reports

@foreach ($report as $reports) @endforeach
Deleted Date User Email Reason For Deleted Full Reason For Deleted
{{ \Carbon\Carbon::parse($reports->created_at->toDateString())->format('m/d/Y') }} @if(!empty($reports->user)){{ $reports->user->email }}@endif {{ $reports->reason }} {{ $reports->full_reason }}
--}}

Delete Report

@foreach ($report as $reports) @endforeach
Deleted Date User Email Reason For Deleted Full Reason For Deleted Action
{{ \Carbon\Carbon::parse($reports->created_at->toDateString())->format('m/d/Y') }} {{ $reports->user->email }} {{ $reports->reason }} {{ $reports->full_reason }}
{{-- Modal --}} {{-- End Modal --}} @endsection @section('scripts') @endsection @push('script') @endpush