@extends('admin.layouts.master')
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
{{--
Deleted Date |
User Email |
Reason For Deleted |
Full Reason For Deleted |
@foreach ($report as $reports)
{{ \Carbon\Carbon::parse($reports->created_at->toDateString())->format('m/d/Y') }}
|
@if(!empty($reports->user)){{ $reports->user->email }}@endif |
{{ $reports->reason }} |
{{ $reports->full_reason }} |
@endforeach
--}}
Deleted Date |
User Email |
Reason For Deleted |
Full Reason For Deleted |
Action |
@foreach ($report as $reports)
{{ \Carbon\Carbon::parse($reports->created_at->toDateString())->format('m/d/Y') }}
|
{{ $reports->user->email }} |
{{ $reports->reason }} |
{{ $reports->full_reason }} |
|
@endforeach
{{-- Modal --}}
{{-- End Modal --}}
@endsection
@section('scripts')
@endsection
@push('script')
@endpush