@extends('layouts.app') @section('title', 'Organization') @section('content')
 Client
 Client Name:  @if(isset($organization->logo)) @endif{{$organization->org_name}}
 Contact Number: {{$organization->contact_no}}
 Contact Email: {{$organization->email_id}}
@foreach($users as $user) @endforeach
First Name Last Name Email Contact Number Designation Status
{{ $user->first_name}} {{ $user->last_name}} {{ $user->email}} {{ $user->phone_no}} {{ $user->designation }} @if($user->is_active==1) Enabled @else Disabled @endif
Title Services
Choose Services
Escrow Services
@csrf
@if(isset($subProductTypeData) && $subProductTypeData!=null) @foreach($subProductTypeData as $sub_product_data) @if(count(array($sub_product_data->getProductMapping)) > 0) @foreach($sub_product_data->getProductMapping as $data) @if($data['org_id'] == $organization_id && $data->is_active)
@if($sub_product_data->sub_product_icon != "" && $sub_product_data->sub_product_icon != NULL) @else @endif
@endif @endforeach @else @endif @endforeach @endif
@if(isset($subProductTypeValues) && $subProductTypeValues!=null) @foreach($subProductTypeValues as $sub_product_data_values) @if(count(array($sub_product_data_values->getProductMapping)) > 0) @foreach($sub_product_data_values->getProductMapping as $datavalues) @if($datavalues['org_id'] == $organization_id && $datavalues->is_active == 1)
@if($sub_product_data->sub_product_icon != "" && $sub_product_data->sub_product_icon != NULL) @else @endif
@endif @endforeach @endif @endforeach @endif
@foreach($pro_system as $system) @endforeach
Production System Username
{{ $system->production_system_name->production_system_name}} {{ $system->user_name}}
@foreach($s_docs as $doc) @endforeach
Document Name Valid Upto Is Expired? Document
{{ $doc->doc_name}} @isset($doc->valid_upto){{ date('d-m-Y', strtotime($doc->valid_upto))}}@endisset @if($doc->is_expired ==1) Yes @else No @endif @if(isset($doc->document)) @endif
@foreach($samplesizes as $samplesize) @endforeach
Sub Product Type Cost
{{ $samplesize->subproduct_type_name}} {{ $samplesize->max_sample_size}}
{{-- {{$client_users}} --}} @foreach($client_users as $cl_usr) @php $processors = $cl_usr->sub_products; @endphp @endforeach
First Name Last Name Email Contact Number Designation User Type Services
{{ $cl_usr->user_dt['first_name']}} {{ $cl_usr->user_dt['last_name']}} {{ $cl_usr->user_dt['email']}} {{ $cl_usr->user_dt['phone_no']}} {{ $cl_usr->user_dt['designation']}} {{ $cl_usr->user_dt['getUserType']['user_types']}} @php $cnt = count($processors); @endphp @foreach($processors as $k => $processor) {{$processor}} @if(($cnt - 1) > $k) , @endif @endforeach

@endsection