I am trying to alias an array ('street','city','country') into an array called address so that my result looks like this
$entry=array('title'=>'....','address'=>array('street','city','country') );
so far i have this ( but it isn't working) :
DB::select('title',array(array('street','city','country'),'address'))-> ....etc
thanks for the help