@if($vendors)
Check All
@foreach($vendors as $_vendor)
@php $vendor_id = $_vendor->id; $isVendorIDExists = in_array( $vendor_id , $checkedVendorsIdsArr ); $checked = ""; if($isVendorIDExists) { $checked = "checked"; } @endphp
@php $pic_name=$_vendor->logo; if($pic_name) { $base_path=asset('uploads/vendors'); $full_pic_path=$base_path."/".$pic_name; } else { $base_path=asset('dist/images'); $full_pic_path=$base_path."/"."profile-default.png"; } @endphp Logo

{{ $_vendor->name }}

Details
@php $_vendor_email = "" ; $_vendor_contact_no = "" ; if($_vendor->email) $_vendor_email = $_vendor->email ; if($_vendor->contact_no) $_vendor_contact_no = $_vendor->contact_no; @endphp
@endforeach @else
No Record Found
@endif