Actualizacuion de Rama Kquiroz

This commit is contained in:
ellecio2
2023-09-04 19:53:37 -04:00
parent d2e9ba53ab
commit 2e99d7b290
2206 changed files with 100145 additions and 467275 deletions

View File

@@ -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,
],
];

View File

@@ -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'),
],
],

View File

@@ -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.
|
*/