mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:07:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			329 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			329 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
class HomeController extends BaseController {
 | 
						|
 | 
						|
	protected $layout = 'master';
 | 
						|
 | 
						|
	public function showWelcome()
 | 
						|
	{
 | 
						|
		return View::make('splash');
 | 
						|
	}
 | 
						|
 | 
						|
	public function showComingSoon()
 | 
						|
	{
 | 
						|
		return View::make('coming_soon');	
 | 
						|
	}
 | 
						|
 | 
						|
	public function logError()
 | 
						|
	{
 | 
						|
		return Utils::logError(Input::get('error'), 'JavaScript');
 | 
						|
	}
 | 
						|
} |