@extends('admin.layouts.app') @section('title', 'View Executives') @section('content')

View Executive List Add More

@foreach ($executives as $row) @endforeach
Photo Executive Name Contact No Email Id Password Address Status Register Date Action
@if ($row->Photo && file_exists(public_path('uploads/'.$row->Photo))) @else @endif {{ $row->Fname }} {{ $row->Lname }} {{ $row->Phone }} {{ $row->EmailId }} {{ $row->Password }} {{ $row->Address }} @if ((int) $row->Status === 1) Approved @else Pending @endif {{ $row->CreatedDate ? $row->CreatedDate->format('d/m/Y') : '' }}
@csrf @method('DELETE')
@endsection @push('scripts') @endpush