New stuff for transaction edits [skip ci]

This commit is contained in:
James Cole
2014-07-25 07:17:56 +02:00
parent a40b281ea3
commit 03994dd774
6 changed files with 93 additions and 7 deletions

View File

@@ -111,6 +111,11 @@ class TransactionController extends BaseController
}
public function index() {
$transactions = $this->_journal->paginate(25);
return View::make('transactions.index')->with('transactions',$transactions);
}
public function show($journalId)
{
$journal = $this->_journal->find($journalId);