This commit is contained in:
James Cole
2025-02-02 16:02:17 +01:00
parent 5adc877d5e
commit 10ccc30240
5 changed files with 73 additions and 22 deletions

View File

@@ -108,6 +108,6 @@ class ExchangeRateRepository implements ExchangeRateRepositoryInterface
#[\Override]
public function getAll(): Collection
{
return $this->userGroup->currencyExchangeRates()->get();
return $this->userGroup->currencyExchangeRates()->orderBy('date','ASC')->get();
}
}