mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
cfdf41afbd
@ -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())
|
||||
|
@ -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');
|
||||
|
5
app/views/secure_payment.blade.php
Normal file
5
app/views/secure_payment.blade.php
Normal file
@ -0,0 +1,5 @@
|
||||
@extends('public.header')
|
||||
|
||||
@section('content')
|
||||
|
||||
@stop
|
Loading…
x
Reference in New Issue
Block a user