31 lines
607 B
PHP
31 lines
607 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'company_name' => env('HR_COMPANY_NAME', 'HR Management System'),
|
|
|
|
'annual_leave_days' => (int) env('HR_ANNUAL_LEAVE_DAYS', 24),
|
|
|
|
'leave_calculation' => env('HR_LEAVE_CALCULATION', 'calendar'), // calendar|business
|
|
|
|
'default_phone' => '+993 61 92 92 48',
|
|
|
|
'file_uploads' => [
|
|
'disk' => 'local',
|
|
'directory' => 'hr',
|
|
],
|
|
|
|
'supported_locales' => ['en', 'tk', 'ru'],
|
|
|
|
'default_locale' => 'en',
|
|
|
|
'locale_labels' => [
|
|
'en' => 'English',
|
|
'tk' => 'Türkmen',
|
|
'ru' => 'Русский',
|
|
],
|
|
|
|
];
|