@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 Is Active Action
{{ $user->first_name}} {{ $user->last_name}} {{ $user->email}} {{ $user->phone_no}} {{ $user->designation }}
is_active==1) checked @endif >
Title Services
Choose Services
Escrow Services
@csrf
@if(isset($subProductTypeData) && $subProductTypeData!=null) @foreach($subProductTypeData as $sub_product_data)
@if(count($sub_product_data->getProductMapping) > 0) @foreach($sub_product_data->getProductMapping as $data) @if($data->org_id == $organization_id) @endif @endforeach @else @endif @if($sub_product_data->sub_product_icon != "" && $sub_product_data->sub_product_icon != NULL) @else @endif
@endforeach @endif
@if(isset($subProductTypeValues) && $subProductTypeValues!=null) @foreach($subProductTypeValues as $sub_product_data_values)
@if(count($sub_product_data_values->getProductMapping) > 0) @foreach($sub_product_data_values->getProductMapping as $datavalues) @if($datavalues->org_id == $organization_id) @endif @endforeach @else @endif @if($sub_product_data_values->sub_product_icon != "" && $sub_product_data_values->sub_product_icon != NULL) @else @endif
@endforeach @endif
@foreach($pro_system as $system) @endforeach
Production System Username Action
{{ $system->production_system_name->production_system_name}} {{ $system->user_name}}
@foreach($s_docs as $doc) @endforeach
Document Name Valid Upto Is Expired? Document Action
{{ $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 Max Sample Size Action
{{ $samplesize->subproduct_type_name }} {{ $samplesize->max_sample_size}}
@foreach($org_pricing as $orgpricing) @endforeach
Sub Product Type Cost Action
{{ $orgpricing->getSubProductTypeName->subproduct_type_name}} {{ $orgpricing->cost}}

@endsection