Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza authored Jul 18, 2023
1 parent ba371d8 commit 48205f6
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,32 +49,34 @@ php artisan vendor:publish --provider="Datalogix\Utils\UtilsServiceProvider" --t
This is the contents of the published file:

```php

/*
|--------------------------------------------------------------------------
| Laravel Utils
|--------------------------------------------------------------------------
*/

return [
/*
|--------------------------------------------------------------------------
| Laravel Utils
|--------------------------------------------------------------------------
*/
'model' => [
'unguard' => false,
'unguard' => env('UTILS_MODEL_UNGUARD', false),
],

'locale' => [
'category' => LC_ALL,
'category' => env('UTILS_LOCALE_CATEGORY', LC_ALL),
],

'schema' => [
'defaultStringLength' => 150,
'defaultStringLength' => env('UTILS_SCHEMA_STRING_LENGTH', 150),
],

'https' => [
'forceScheme' => app()->environment('production'),
'middleware' => app()->environment('production'),
'forceScheme' => env('UTILS_HTTPS_FORCE_SCHEME', app()->environment('production')),
'middleware' => env('UTILS_HTTPS_MIDDLEWARE', app()->environment('production')),
],

'paginator' => [
'defaultView' => 'pagination::tailwind',
'defaultSimpleView' => 'pagination::simple-tailwind',
'defaultView' => env('UTILS_PAGINATOR_VIEW', 'pagination::tailwind'),
'defaultSimpleView' => env('UTILS_PAGINATOR_SIMPLE_VIEW', 'pagination::simple-tailwind'),
],
];
```

0 comments on commit 48205f6

Please sign in to comment.