|
43 | 43 |
|
44 | 44 | /*
|
45 | 45 | |--------------------------------------------------------------------------
|
46 |
| - | Application Fallback Locale |
| 46 | + | Routable Locales |
47 | 47 | |--------------------------------------------------------------------------
|
48 | 48 | |
|
49 |
| - | The fallback locale determines the locale to use when the current one |
50 |
| - | is not available. You may change the value to correspond to any of |
51 |
| - | the language folders that are provided through your application. |
| 49 | + | Here you may list the locales that are "routable" for your application. |
| 50 | + | When a request with a URI beginning with one of the locales is sent |
| 51 | + | to the application, the "default" locale will be set accordingly. |
52 | 52 | |
|
53 | 53 | */
|
54 | 54 |
|
55 |
| - 'fallback_locale' => 'en', |
| 55 | + 'locales' => array(), |
56 | 56 |
|
57 | 57 | /*
|
58 | 58 | |--------------------------------------------------------------------------
|
|
92 | 92 | 'Illuminate\Encryption\EncryptionServiceProvider',
|
93 | 93 | 'Illuminate\Filesystem\FilesystemServiceProvider',
|
94 | 94 | 'Illuminate\Hashing\HashServiceProvider',
|
| 95 | + 'Illuminate\Html\HtmlServiceProvider', |
95 | 96 | 'Illuminate\Foundation\Providers\KeyGeneratorServiceProvider',
|
96 | 97 | 'Illuminate\Log\LogServiceProvider',
|
97 | 98 | 'Illuminate\Mail\MailServiceProvider',
|
98 | 99 | 'Illuminate\Database\MigrationServiceProvider',
|
| 100 | + 'Illuminate\Foundation\Providers\OptimizeServiceProvider', |
99 | 101 | 'Illuminate\Pagination\PaginationServiceProvider',
|
100 | 102 | 'Illuminate\Foundation\Providers\PublisherServiceProvider',
|
101 | 103 | 'Illuminate\Queue\QueueServiceProvider',
|
102 | 104 | 'Illuminate\Redis\RedisServiceProvider',
|
103 | 105 | 'Illuminate\Auth\Reminders\ReminderServiceProvider',
|
| 106 | + 'Illuminate\Foundation\Providers\RouteListServiceProvider', |
104 | 107 | 'Illuminate\Database\SeedServiceProvider',
|
105 | 108 | 'Illuminate\Foundation\Providers\ServerServiceProvider',
|
106 | 109 | 'Illuminate\Session\SessionServiceProvider',
|
|
123 | 126 | |
|
124 | 127 | */
|
125 | 128 |
|
126 |
| - 'manifest' => __DIR__.'/../storage/meta', |
| 129 | + 'manifest' => storage_path().'/meta', |
127 | 130 |
|
128 | 131 | /*
|
129 | 132 | |--------------------------------------------------------------------------
|
|
152 | 155 | 'Eloquent' => 'Illuminate\Database\Eloquent\Model',
|
153 | 156 | 'Event' => 'Illuminate\Support\Facades\Event',
|
154 | 157 | 'File' => 'Illuminate\Support\Facades\File',
|
| 158 | + 'Form' => 'Illuminate\Support\Facades\Form', |
155 | 159 | 'Hash' => 'Illuminate\Support\Facades\Hash',
|
| 160 | + 'Html' => 'Illuminate\Support\Facades\Html', |
156 | 161 | 'Input' => 'Illuminate\Support\Facades\Input',
|
157 | 162 | 'Lang' => 'Illuminate\Support\Facades\Lang',
|
158 | 163 | 'Log' => 'Illuminate\Support\Facades\Log',
|
|
0 commit comments