belongsTo(Account::class); } /** * Get the user record associated with the gift. * * @return BelongsTo */ public function user() { return $this->belongsTo(User::class); } /** * Get the import jobs reports records associated with the account. * * @return HasMany */ public function importjobreports() { return $this->hasMany(ImportJobReport::class); } }