More exact search for available budgets. #7853

This commit is contained in:
James Cole
2023-08-15 18:37:47 +02:00
parent e3c4dde4ff
commit f67ff98d78
3 changed files with 26 additions and 1 deletions

View File

@@ -200,6 +200,23 @@ class AvailableBudgetRepository implements AvailableBudgetRepositoryInterface
return $query->get();
}
/**
* Returns all available budget objects.
*
* @param Carbon $start
* @param Carbon $end
*
* @return Collection
*
*/
public function getAvailableBudgetsByExactDate(Carbon $start, Carbon $end): Collection
{
return $this->user->availableBudgets()
->where('start_date', '=', $start->format('Y-m-d'))
->where('end_date', '=', $end->format('Y-m-d'))
->get();
}
/**
* @inheritDoc
*/