Working on secure payment page

This commit is contained in:
Hillel Coren 2014-05-12 14:10:42 +03:00
parent 683dacdc37
commit 71bc52f724
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