belongsTo(Account::class); } /** * Get the ledger that owns the Balance * * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function ledger(): BelongsTo { return $this->belongsTo(Ledger::class); } }