Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Razi KAntorp 2014-05-12 13:34:31 +02:00
commit cfdf41afbd
3 changed files with 11 additions and 0 deletions

View File

@ -74,6 +74,11 @@ class HomeController extends BaseController {
return View::make('coming_soon');
}
public function showSecurePayment()
{
return View::make('secure_payment');
}
public function invoiceNow()
{
if (Auth::check())

View File

@ -31,6 +31,7 @@ Route::get('/plans', 'HomeController@showPlans');
Route::post('/contact', 'HomeController@doContactUs');
Route::get('/faq', 'HomeController@showFaq');
Route::get('/features', 'HomeController@showFeatures');
Route::get('/secure_payment', 'HomeController@showSecurePayment');
Route::get('log_error', 'HomeController@logError');
Route::get('invoice_now', 'HomeController@invoiceNow');

View File

@ -0,0 +1,5 @@
@extends('public.header')
@section('content')
@stop