| 123456789101112131415161718192021222324252627282930313233343536373839 | <?phpreturn [	/*	|--------------------------------------------------------------------------	| Application Namespace	|--------------------------------------------------------------------------	|	| This is the root namespace used by the various Laravel generator tasks	| that are able to build controllers, console commands and many other	| classes for you. You may set the name via the "app:name" command.	|	*/	'root' => 'App\\',	/*	|--------------------------------------------------------------------------	| Generator Namespaces	|--------------------------------------------------------------------------	|	| These namespaces are utilized by the various class generator Artisan	| commands. You are free to change them to whatever you wish or not	| at all. The "app:name" command is the easiest way to set these.	|	*/	'console' => 'App\Console\\',	'controllers' => 'App\Http\Controllers\\',	'filters' => 'App\Http\Filters\\',	'providers' => 'App\Providers\\',	'requests' => 'App\Http\Requests\\',];
 |