@extends('layouts.app') @section('title', 'User List') @section('content')
 User
 User Name:  {{$user_dt->first_name}} {{$user_dt->last_name}}
 Phone Number: {{$user_dt->phone_no}}
  Email: {{$user_dt->email}}
@foreach($users as $user)

First Name

{{ $user->first_name}}

Last Name

{{ $user->last_name}}


Email

{{ $user->email}}

Phone

{{ $user->phone_no}}


Designation

{{ $user->designation}}

User Type

@foreach($usertype as $userstype) @if($userstype->id==$user->user_type_id) {{ $userstype->user_types }} @endif @endforeach


Status

Is Active?


@endforeach
@csrf
@foreach($client_list as $k=> $org)
@forelse($org->getOrgProductMapping as $j=> $org_mapp) @php $sub_prod = $org_mapp->getSubProductType @endphp
@php $cm = $org_mapp['User_product_mapping']; if($cm != Null) { $sub_prod_type_id = $cm['sub_product_type_id']; $ven_id = $cm['org_id']; } else { $sub_prod_type_id = ""; $ven_id = ""; } @endphp id && $ven_id == $org->id) checked @endif> @if($sub_prod->sub_product_icon == "" || $sub_prod->sub_product_icon == NULL) @else @endif {{$sub_prod->subproduct_type_name}}
@empty @endforelse
@endforeach
@csrf
@php $orgIds = explode(',',$user_dt->org_ids); @endphp

@endsection