Exemplo n.º 1
0
 private function createPersonAddress($person_id, $location_id, $type){
     $persaddrattributes = array(
             "type" => $type,
             "person_id" => $person_id,
             "location_id" => $location_id);
     \Personaddress::create($persaddrattributes);
 }