belongsTo(Company::class); } public function user() { return $this->belongsTo(User::class)->withTrashed(); } public function account() { return $this->belongsTo(Account::class); } public function transactions() { return $this->hasMany(BankTransaction::class)->withTrashed(); } }