mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
17 lines
449 B
PHP
17 lines
449 B
PHP
<?php
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
|
|
use Carbon\Carbon;
|
|
|
|
class Category implements CategoryInterface
|
|
{
|
|
public function journalsInRange(\Category $category, Carbon $start, Carbon $end)
|
|
{
|
|
return $category->transactionjournals()->with(
|
|
['transactions', 'transactions.account', 'transactiontype', 'components']
|
|
)->orderBy('date', 'DESC')->orderBy('id', 'DESC')->before($end)->after($start)->get();
|
|
|
|
}
|
|
}
|