Account show didn't show anything.

This commit is contained in:
James Cole
2015-03-01 10:44:10 +01:00
parent 19e34b460f
commit 675530458c
3 changed files with 16 additions and 2 deletions

View File

@@ -268,6 +268,9 @@ class TransactionController extends Controller
event(new JournalSaved($journal));
Session::flash('success', 'New transaction "' . $journal->description . '" stored!');
if (intval(Input::get('create_another')) === 1) {
return Redirect::route('transactions.create', $request->input('what'));
}
return Redirect::route('transactions.index', $request->input('what'));
@@ -284,6 +287,7 @@ class TransactionController extends Controller
public function update(TransactionJournal $journal, JournalFormRequest $request, JournalRepositoryInterface $repository)
{
$journalData = [
'what' => $request->get('what'),
'description' => $request->get('description'),
@@ -306,6 +310,10 @@ class TransactionController extends Controller
Session::flash('success', 'Transaction "' . e($journalData['description']) . '" updated.');
if (intval(Input::get('return_to_edit')) === 1) {
return Redirect::route('transactions.edit', $journal->id);
}
return Redirect::route('transactions.index', $journalData['what']);
}