Laravel Utils is a package that configure simple things, which we usually forget about in our projects.
- Translations
EN
andpt_BR
- Model unguarded
disabled
- Set locale
LC_ALL
when updated - Set default string length for schema to
150
- Middleware to force https on
production environment
- Set default view for paginator to
tailwind
- Register translations automatically using datalogix/laravel-translation.
- Inject Respect Validation using datalogix/laravel-validation.
You can install the package via composer:
composer require datalogix/laravel-utils
The package will automatically register itself.
To publish Portuguese translations (pt_BR), use the command below:
php artisan vendor:publish --provider="Datalogix\Utils\UtilsServiceProvider" --tag="lang"
The defaults are set in config/utils.php
. Copy this file to your own config directory to modify the values. You can publish the config using this command:
php artisan vendor:publish --provider="Datalogix\Utils\UtilsServiceProvider" --tag="config"
This is the contents of the published file:
/*
|--------------------------------------------------------------------------
| Laravel Utils
|--------------------------------------------------------------------------
*/
return [
'model' => [
'unguard' => env('UTILS_MODEL_UNGUARD', false),
],
'locale' => [
'category' => env('UTILS_LOCALE_CATEGORY', LC_ALL),
],
'schema' => [
'defaultStringLength' => env('UTILS_SCHEMA_STRING_LENGTH', 150),
],
'https' => [
'forceScheme' => env('UTILS_HTTPS_FORCE_SCHEME', app()->environment('production')),
'middleware' => env('UTILS_HTTPS_MIDDLEWARE', app()->environment('production')),
],
'paginator' => [
'defaultView' => env('UTILS_PAGINATOR_VIEW', 'pagination::tailwind'),
'defaultSimpleView' => env('UTILS_PAGINATOR_SIMPLE_VIEW', 'pagination::simple-tailwind'),
],
];