2014-07-29 13:30:50 -05:00
|
|
|
<?php
|
|
|
|
|
2014-08-06 10:02:02 -05:00
|
|
|
use Firefly\Storage\RecurringTransaction\RecurringTransactionRepositoryInterface as RTR;
|
|
|
|
|
2014-08-02 00:34:38 -05:00
|
|
|
class RecurringController extends BaseController
|
|
|
|
{
|
2014-08-06 10:02:02 -05:00
|
|
|
protected $_repository;
|
|
|
|
public function __construct(RTR $repository)
|
|
|
|
{
|
|
|
|
$this->_repository = $repository;
|
|
|
|
View::share('menu', 'home');
|
|
|
|
}
|
2014-07-29 13:30:50 -05:00
|
|
|
public function create()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function destroy()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function edit()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function index()
|
|
|
|
{
|
2014-08-06 10:02:02 -05:00
|
|
|
$list = $this->_repository->get();
|
|
|
|
return View::make('recurring.index');
|
2014-07-29 13:30:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function show()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function store()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|