@extends('template.main') @section('title', 'User') @section('content')

@yield('title')

@foreach ($user as $data) @endforeach
# Full Name Email Contact Gender Member Type Executive Type Action
{{ $loop->iteration }} {{ $data->first_name.' '.$data->last_name }} {{ $data->email }} {{ $data->cell_phone }} {{ $data->user_type_id == 1 ? 'Mass': 'Executive' }} {{ App\Helper\ExecTypeLookUp($data->exec_type_id)}}
@csrf @method('delete')
@endsection