Update views and JS for delete (single) transaction.

This commit is contained in:
James Cole
2017-01-15 19:08:16 +01:00
parent 582398e7f6
commit 9c09f93908
2 changed files with 1 additions and 1 deletions

View File

@@ -139,7 +139,7 @@ class SingleController extends Controller
Session::flash('gaEventCategory', 'transactions'); Session::flash('gaEventCategory', 'transactions');
Session::flash('gaEventAction', 'delete-' . $what); Session::flash('gaEventAction', 'delete-' . $what);
return view('transactions.delete', compact('journal', 'subTitle', 'what')); return view('transactions.single.delete', compact('journal', 'subTitle', 'what'));
} }