mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-01-25 04:13:17 +00:00
🛠️ Refactor migrations, models, configs, and Blade files to apply consistent formatting, remove unnecessary lines, and improve readability.
This commit is contained in:
@@ -50,5 +50,5 @@ return [
|
||||
* the field to have a value and alerts the user if it is empty or undefined.
|
||||
* Supported: "true", "false"
|
||||
*/
|
||||
'permit_empty' => env('CIPHERSWEET_PERMIT_EMPTY', FALSE)
|
||||
'permit_empty' => env('CIPHERSWEET_PERMIT_EMPTY', false),
|
||||
];
|
||||
|
||||
@@ -51,7 +51,7 @@ return [
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL') . '/storage',
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'visibility' => 'public',
|
||||
'throw' => false,
|
||||
],
|
||||
|
||||
@@ -12,7 +12,7 @@ return [
|
||||
*/
|
||||
|
||||
'theme' => \PowerComponents\LivewirePowerGrid\Themes\Tailwind::class,
|
||||
//'theme' => \PowerComponents\LivewirePowerGrid\Themes\Bootstrap5::class,
|
||||
// 'theme' => \PowerComponents\LivewirePowerGrid\Themes\Bootstrap5::class,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -30,10 +30,10 @@ return [
|
||||
'flatpickr' => [
|
||||
'locales' => [
|
||||
'de_DE' => [
|
||||
'locale' => 'de',
|
||||
'locale' => 'de',
|
||||
'dateFormat' => 'd.m.Y H:i',
|
||||
'enableTime' => true,
|
||||
'time_24hr' => true,
|
||||
'time_24hr' => true,
|
||||
],
|
||||
],
|
||||
],
|
||||
@@ -128,14 +128,14 @@ return [
|
||||
*/
|
||||
|
||||
'exportable' => [
|
||||
'default' => 'openspout_v4',
|
||||
'default' => 'openspout_v4',
|
||||
'openspout_v4' => [
|
||||
'xlsx' => \PowerComponents\LivewirePowerGrid\Components\Exports\OpenSpout\v4\ExportToXLS::class,
|
||||
'csv' => \PowerComponents\LivewirePowerGrid\Components\Exports\OpenSpout\v4\ExportToCsv::class,
|
||||
'csv' => \PowerComponents\LivewirePowerGrid\Components\Exports\OpenSpout\v4\ExportToCsv::class,
|
||||
],
|
||||
'openspout_v3' => [
|
||||
'xlsx' => \PowerComponents\LivewirePowerGrid\Components\Exports\OpenSpout\v3\ExportToXLS::class,
|
||||
'csv' => \PowerComponents\LivewirePowerGrid\Components\Exports\OpenSpout\v3\ExportToCsv::class,
|
||||
'csv' => \PowerComponents\LivewirePowerGrid\Components\Exports\OpenSpout\v3\ExportToCsv::class,
|
||||
],
|
||||
],
|
||||
|
||||
|
||||
@@ -45,7 +45,6 @@ return [
|
||||
*/
|
||||
'cache_store' => null,
|
||||
|
||||
|
||||
/*
|
||||
* When cache_store is enabled, this value will be used to determine
|
||||
* how long the cache will be valid. If you set this to `null` the
|
||||
|
||||
@@ -141,7 +141,7 @@ return [
|
||||
'-m 6', // for the slowest compression method in order to get the best compression.
|
||||
'-pass 10', // for maximizing the amount of analysis pass.
|
||||
'-mt', // multithreading for some speed improvements.
|
||||
'-q 90', //quality factor that brings the least noticeable changes.
|
||||
'-q 90', // quality factor that brings the least noticeable changes.
|
||||
],
|
||||
Spatie\ImageOptimizer\Optimizers\Avifenc::class => [
|
||||
'-a cq-level=23', // constant quality level, lower values mean better quality and greater file size (0-63).
|
||||
|
||||
@@ -42,6 +42,6 @@ return [
|
||||
|
||||
'btc_pay' => [
|
||||
'api_key' => env('BTC_PAY_API_KEY'),
|
||||
]
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user