<?php namespace AppModels; use IlluminateDatabaseEloquentModel; class User extends Model { /** * Get the phone associated with the user. */ public function phone() { return $this->hasOne(Phone::class); } }