@props(['organizations' => []])

Organization OR LLC

@forelse ( $organizations as $index => $organization) @php $organizationName = str_replace('"', '', $organization['company_name']); @endphp
{{ __('Company Name') }}
@php // dd($organization['organizations']); $count = count(json_decode($organization['organization_name'])); $names = json_decode($organization['organization_name']); $emails = json_decode($organization['organization_email']); $phones = json_decode($organization['organization_phone']); $authorized = json_decode($organization['organization_authorized_to_sign']); @endphp @for ($i=0 ; $i< $count ; $i++)
{{ __('Name') }}
{{ __('Email') }}
{{ __('Phone') }}
@if ($i != 0) {{-- hide the delete button for the first iteration becasue user not delete the first user information --}} @endif
@endfor
@empty @endforelse