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

Report Table

{{-- --}} @foreach ($report as $reports) @endforeach
Created Date First Name Last Name Email Phone Number User Name StatusUser NameAction
{{ \Carbon\Carbon::parse($reports->created_at->toDateString())->format('m/d/Y') }} {{ $reports->first_name }} {{ $reports->last_name }} {{ $reports->email }} {{ $reports->number_format1 }} {{ $reports->user_name }} @if ($reports->is_type == 'approve') Approved @elseif($reports->is_type == 'pending') Pending @else Denied @endif @if ($reports->is_type == 'denied') @endif
{{-- Modal --}} {{-- End Modal --}} @endsection @section('scripts') @endsection @push('script') @endpush