mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-07 10:28:22 +00:00
15 lines
274 B
PHP
15 lines
274 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace Firefly\Storage\RecurringTransaction;
|
||
|
|
|
||
|
|
use Carbon\Carbon;
|
||
|
|
|
||
|
|
class EloquentRecurringTransactionRepository implements RecurringTransactionRepositoryInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public function get() {
|
||
|
|
return \Auth::user()->recurringtransactions()->get();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|