@if($startups) @foreach($startups as $_startups) @php $startup_id = $_startups['id']; $isStartupIDExists = in_array( $startup_id , $checkedStartupIdsArr ); $checked = ""; if($isStartupIDExists) { $checked = "checked"; } @endphp {{ $_startups->company_name }} {{ $_startups->name }} @php $_startups_email = ""; $_startups_founder_profile = ""; $_startups_company_website = ""; if(@$_startups->email) $_startups_email = $_startups->email; if(@$_startups->founder_profile) $_startups_founder_profile = $_startups->founder_profile; if(@$_startups->company_website) $_startups_company_website = $_startups->company_website; @endphp {{ $_startups->startup_sub_status }} @endforeach @else No Record Found @endif