diff --git a/app/controllers/HomeController.php b/app/controllers/HomeController.php index a90a76396..adc8f5d59 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 12e6cafa1..ed363f13b 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 faf866e0e..5a7ca92b6 100644 --- a/app/views/public/header.blade.php +++ b/app/views/public/header.blade.php @@ -8,8 +8,7 @@ ---> - +-->