I need help on this , I want to make fetching from two or more than two models with clause and fetch selected fields in laravel 5.
<?php
//I was trying this but it didn't worked
$this->users->
with('contacts', 'orders')->
get(array('users.id', 'contacts.phone', 'orders.price;
?>