mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Various new stuff.
This commit is contained in:
		| @@ -4,27 +4,8 @@ use Illuminate\Support\Facades\Config; | ||||
|  | ||||
| return array( | ||||
|  | ||||
|     /* | ||||
|      |-------------------------------------------------------------------------- | ||||
|      | Debugbar Settings | ||||
|      |-------------------------------------------------------------------------- | ||||
|      | | ||||
|      | Debugbar is enabled by default, when debug is set to true in app.php. | ||||
|      | | ||||
|      */ | ||||
|  | ||||
|     'enabled' => Config::get('app.debug'), | ||||
|  | ||||
|     /* | ||||
|      |-------------------------------------------------------------------------- | ||||
|      | Storage settings | ||||
|      |-------------------------------------------------------------------------- | ||||
|      | | ||||
|      | DebugBar stores data for session/ajax requests in a directory. | ||||
|      | You can disable this, so the debugbar stores data in headers/session, | ||||
|      | but this can cause problems with large data collectors. | ||||
|      | | ||||
|      */ | ||||
|     'storage' => array( | ||||
|         'enabled' => true, | ||||
|         'path' => storage_path() . '/debugbar', | ||||
|   | ||||
| @@ -2,22 +2,10 @@ | ||||
|  | ||||
| class HomeController extends BaseController { | ||||
|  | ||||
| 	/* | ||||
| 	|-------------------------------------------------------------------------- | ||||
| 	| Default Home Controller | ||||
| 	|-------------------------------------------------------------------------- | ||||
| 	| | ||||
| 	| You may wish to use controllers instead of, or in addition to, Closure | ||||
| 	| based routes. That's great! Here is an example controller method to | ||||
| 	| get you started. To route to this controller, just add the route: | ||||
| 	| | ||||
| 	|	Route::get('/', 'HomeController@showWelcome'); | ||||
| 	| | ||||
| 	*/ | ||||
|  | ||||
| 	public function showWelcome() | ||||
| 	public function index() | ||||
| 	{ | ||||
| 		return View::make('hello'); | ||||
|  | ||||
| 		return View::make('index'); | ||||
| 	} | ||||
|  | ||||
| } | ||||
|   | ||||
| @@ -11,7 +11,4 @@ | ||||
| | | ||||
| */ | ||||
|  | ||||
| Route::get('/', function() | ||||
| { | ||||
| 	return View::make('hello'); | ||||
| }); | ||||
| Route::get('/', ['uses' => 'HomeController@index','as' => 'index']); | ||||
|   | ||||
							
								
								
									
										2
									
								
								app/storage/debugbar/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								app/storage/debugbar/.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| * | ||||
| !.gitignore | ||||
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										8
									
								
								app/views/index.blade.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								app/views/index.blade.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| <html> | ||||
| <head> | ||||
|     <title>Bla bla</title> | ||||
| </head> | ||||
| <body> | ||||
| Bla bla | ||||
| </body> | ||||
| </html> | ||||
		Reference in New Issue
	
	Block a user