@extends('admin.layouts.app') @section('content')

{{ $title }}

{{-- --}} {{-- --}}
{{-- --}} @foreach ($data as $key => $user) {{-- --}} @endforeach
SelectName Email Approved? Created At Status Actions
{!! $user->name !!} {!! $user->email !!}
is_approved, 1) !!} {{ !$canEdit ? 'disabled' : '' }}>
{!! strtotime($user->created_at) !!}{!! date('m/d/Y H:i:A', strtotime($user->created_at)) !!}
is_active, 1) !!} {{ !$canEdit ? 'disabled' : '' }}>
{{-- --}} @if ($user->role->name == 'Employer') @can('job.view') @endcan @else @can('application.view') @endcan @endif {{-- @if ($canDelete)
@csrf @method('DELETE')
@endif --}}
@endsection @section('footer-js') @endsection