diff --git a/app/controllers/CurrencyController.php b/app/controllers/CurrencyController.php new file mode 100644 index 0000000000..db7bf651fb --- /dev/null +++ b/app/controllers/CurrencyController.php @@ -0,0 +1,26 @@ +_repository = $repository; + View::share('title', 'Currencies'); + View::share('mainTitleIcon', 'fa-usd'); + } + + public function index() + { + $currencies = $this->_repository->get(); + + return View::make('currency.index',compact('currencies')); + } + +} \ No newline at end of file