Actualizacuion de Rama Kquiroz
This commit is contained in:
@@ -100,7 +100,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'locale' => env('DEFAULT_LANGUAGE', 'es'),
|
||||
'locale' => env('DEFAULT_LANGUAGE', 'en'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -113,7 +113,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'fallback_locale' => 'es',
|
||||
'fallback_locale' => 'en',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -169,8 +169,6 @@ return [
|
||||
Illuminate\Validation\ValidationServiceProvider::class,
|
||||
Illuminate\View\ViewServiceProvider::class,
|
||||
KingFlamez\Rave\RaveServiceProvider::class,
|
||||
|
||||
|
||||
|
||||
/*
|
||||
* Package Service Providers...
|
||||
@@ -186,7 +184,6 @@ return [
|
||||
App\Providers\RouteServiceProvider::class,
|
||||
|
||||
Spatie\Permission\PermissionServiceProvider::class,
|
||||
|
||||
|
||||
],
|
||||
|
||||
@@ -239,8 +236,6 @@ return [
|
||||
'PDF' => niklasravnsborg\LaravelPdf\Facades\Pdf::class,
|
||||
'Str' => Illuminate\Support\Str::class,
|
||||
'Rave' => KingFlamez\Rave\Facades\Rave::class,
|
||||
'Recaptcha' => \ReCaptcha\ReCaptcha::class,
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
@@ -55,13 +55,24 @@ return [
|
||||
'visibility' => 'public',
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
'aws' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'url' => env('AWS_URL'),
|
||||
// 'scheme' => 'http',
|
||||
],
|
||||
|
||||
'backblaze' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('BACKBLAZE_ACCESS_KEY_ID'),
|
||||
'secret' => env('BACKBLAZE_SECRET_ACCESS_KEY'),
|
||||
'region' => env('BACKBLAZE_DEFAULT_REGION'),
|
||||
'bucket' => env('BACKBLAZE_BUCKET'),
|
||||
'url' => env('BACKBLAZE_URL'),
|
||||
'endpoint' => env('BACKBLAZE_ENDPOINT'),
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
@@ -162,7 +162,7 @@ return [
|
||||
|
|
||||
| By setting this option to true, session cookies will only be sent back
|
||||
| to the server if the browser has a HTTPS connection. This will keep
|
||||
| the cookie from being sent to you if it can not be done securely.
|
||||
| the cookie from being sent to you if it cannot be done securely.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user