Если у вас есть producttext ID
, тогда
$product = Producttext::find($id)
ИЛИ
$product = Producttext::where('id',$id)->first();
//test and check that you have it $product->SupplierID
$suplierproduct = Company::select('id', 'CompanyName')->where('id',$product->SupplierID)
->first();