mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-22 19:21:23 +00:00
Lots of cleaning up.
This commit is contained in:
@@ -83,6 +83,12 @@ class BillController extends BaseController
|
||||
public function index()
|
||||
{
|
||||
$bills = $this->_repository->get();
|
||||
$bills->each(
|
||||
function (Bill $bill) {
|
||||
$bill->nextExpectedMatch = $this->_repository->nextExpectedMatch($bill);
|
||||
$bill->lastFoundMatch = $this->_repository->lastFoundMatch($bill);
|
||||
}
|
||||
);
|
||||
|
||||
return View::make('bills.index', compact('bills'));
|
||||
}
|
||||
@@ -115,6 +121,7 @@ class BillController extends BaseController
|
||||
public function show(Bill $bill)
|
||||
{
|
||||
$journals = $bill->transactionjournals()->withRelevantData()->orderBy('date', 'DESC')->get();
|
||||
$bill->nextExpectedMatch = $this->_repository->nextExpectedMatch($bill);
|
||||
$hideBill = true;
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user