diff --git a/app/controllers/HomeController.php b/app/controllers/HomeController.php index a90a76396a7a..adc8f5d59136 100755 --- a/app/controllers/HomeController.php +++ b/app/controllers/HomeController.php @@ -63,6 +63,10 @@ class HomeController extends BaseController { return View::make('public.plans', $data); } + public function showTestimonials() + { + return View::make('public.testimonials'); + } public function doContactUs() diff --git a/app/routes.php b/app/routes.php index 12e6cafa10f9..ed363f13bc5e 100755 --- a/app/routes.php +++ b/app/routes.php @@ -33,6 +33,7 @@ Route::post('/contact_submit', 'HomeController@doContactUs'); Route::get('/faq', 'HomeController@showFaq'); Route::get('/features', 'HomeController@showFeatures'); Route::get('/secure_payment', 'HomeController@showSecurePayment'); +Route::get('/testimonials', 'HomeController@showTestimonials'); Route::get('log_error', 'HomeController@logError'); Route::get('invoice_now', 'HomeController@invoiceNow'); diff --git a/app/views/public/header.blade.php b/app/views/public/header.blade.php index faf866e0eabe..5a7ca92b66ef 100644 --- a/app/views/public/header.blade.php +++ b/app/views/public/header.blade.php @@ -8,8 +8,7 @@ ---> - +-->