@php
$partners = \App\Models\Partner::where('status', 0)->where('type', 0)->latest()->get();
$plasticNeutrals = \App\Models\Partner::where('status', 0)->where('type', 1)->latest()->get();
@endphp
@if(isset($plasticNeutrals))
{{__('THEY HAVE JOINED CORSAIR')}}
THEY BECAME PLASTIC NEUTRAL
@foreach ($plasticNeutrals as $plasticNeutral)
-
@endforeach
@endif
@if(isset($partners))
{{__('THEY HAVE JOINED CORSAIR')}}
OUR LATEST PARTNERSHIPS
@foreach ($partners as $partner)
-
@endforeach
@endif