belongsTo(Account::class); } /** * Get the user record associated with the address book. * * @return BelongsTo */ public function user() { return $this->belongsTo(User::class); } /** * Get all contacts for this address book. * * @return HasMany */ public function contacts() { return $this->hasMany(Contact::class); } }