Ability to highlight a particular transaction. [skip ci]

This commit is contained in:
James Cole
2014-08-09 06:56:38 +02:00
parent f2cee8fea7
commit ebb28df607
4 changed files with 16 additions and 9 deletions

View File

@@ -117,7 +117,7 @@ class BudgetController extends BaseController
return View::make('budgets.show')->with('budget', $budget)->with('repetitions', $repetitions)->with(
'filters', $filters
);
)->with('highlight',Input::get('highlight'));
}
/**

View File

@@ -60,7 +60,9 @@ class CategoryController extends BaseController
$journals = $this->_category->journalsInRange($category, $start, $end);
return View::make('categories.show')->with('category', $category)->with('journals', $journals);
return View::make('categories.show')->with('category', $category)->with('journals', $journals)->with(
'highlight', Input::get('highlight')
);
}
public function store()
@@ -84,16 +86,17 @@ class CategoryController extends BaseController
public function update(Category $category)
{
$category = $this->_repository->update($category, Input::all());
if($category->validate()) {
if ($category->validate()) {
Session::flash('success', 'Category "' . $category->name . '" updated.');
return Redirect::route('categories.index');
} else {
Session::flash('success', 'Could not update category "' . $category->name . '".');
return Redirect::route('categories.edit')->withErrors($category->errors())->withInput();
}
}