Use Eloquent relationships instead of left joins:
Place::with(['phones', 'features'])->first();
Assumes you have the following relationships on the Place model:
public function phone()
{
return $this->hasMany(Phone::class);
}
public function features()
{
return $this->hasMany(Feature::class);
}