paths.php 2.99 KB
Newer Older
Nicolas Widart's avatar
Nicolas Widart committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
<?php

return [

	/*
	|--------------------------------------------------------------------------
	| Application Path
	|--------------------------------------------------------------------------
	|
	| Here we just defined the path to the application directory. Most likely
	| you will never need to change this value as the default setup should
	| work perfectly fine for the vast majority of all our applications.
	|
	*/

	'app' => __DIR__.'/../app',

	/*
	|--------------------------------------------------------------------------
	| Base Path
	|--------------------------------------------------------------------------
	|
	| The base path is the root of the Laravel installation. Most likely you
	| will not need to change this value. But, if for some wild reason it
	| is necessary you will do so here, just proceed with some caution.
	|
	*/

	'base' => __DIR__.'/..',

	/*
	|--------------------------------------------------------------------------
	| Configuration Path
	|--------------------------------------------------------------------------
	|
	| This path is used by the configuration loader to load the application
	| configuration files. In general, you should'nt need to change this
	| value; however, you can theoretically change the path from here.
	|
	*/

	'config' => __DIR__.'/../config',

	/*
	|--------------------------------------------------------------------------
	| Database Path
	|--------------------------------------------------------------------------
	|
	| This path is used by the migration generator and migration runner to
	| know where to place your fresh database migration classes. You're
	| free to modify the path but you probably will not ever need to.
	|
	*/

	'database' => __DIR__.'/../database',

	/*
	|--------------------------------------------------------------------------
	| Language Path
	|--------------------------------------------------------------------------
	|
	| This path is used by the language file loader to load your application
	| language files. The purpose of these files is to store your strings
	| that are translated into other languages for views, e-mails, etc.
	|
	*/

	'lang' => __DIR__.'/../resources/lang',

	/*
	|--------------------------------------------------------------------------
	| Public Path
	|--------------------------------------------------------------------------
	|
	| The public path contains the assets for your web application, such as
	| your JavaScript and CSS files, and also contains the primary entry
	| point for web requests into these applications from the outside.
	|
	*/

	'public' => __DIR__.'/../public',

	/*
	|--------------------------------------------------------------------------
	| Storage Path
	|--------------------------------------------------------------------------
	|
	| The storage path is used by Laravel to store cached Blade views, logs
	| and other pieces of information. You may modify the path here when
	| you want to change the location of this directory for your apps.
	|
	*/

	'storage' => __DIR__.'/../storage',

];