This commit is contained in:
James Cole
2018-01-11 20:49:55 +01:00
parent 9614310208
commit 554b38ccff
3 changed files with 24 additions and 24 deletions

View File

@@ -262,7 +262,7 @@ class BillController extends Controller
}
$bill->nextExpectedMatch = $repository->nextExpectedMatch($bill, $lastPaidDate);
$hideBill = true;
$subTitle = e($bill->name);
$subTitle = $bill->name;
return view('bills.show', compact('transactions', 'yearAverage', 'overallAverage', 'year', 'hideBill', 'bill', 'subTitle'));
}