Я бы пошел с таким подходом:
//My Controller File
public function index()
{
// type = 1: partners
$partners = PartnersCustomer::whereType(1)->get();
// type =2 : customers
$customers = PartnersCustomer::whereType(2)->get();
return view('my-blade-file-path')->with('partners', $partner)->with('customers' , $customers);
}
Внутри вашего шаблона лезвия
<!-- INSIDE YOUR BLADE TEMPLATE -->
@foreach($customers as $customer)
@if($customer->display_logo == 1)
<img src="{{ $customer->logo_path}}" />
@endif
@endforeach