loan order improvemetns

This commit is contained in:
2023-11-27 01:30:49 +05:00
parent 0fcdedbcc7
commit c50aae497e
10 changed files with 104 additions and 92 deletions

View File

@@ -1,4 +1,5 @@
<?php
return [
/*
|--------------------------------------------------------------------------
@@ -6,67 +7,67 @@ return [
|--------------------------------------------------------------------------
|
*/
"paths" => [
"lang_folder" => base_path('lang')
'paths' => [
'lang_folder' => base_path('lang'),
],
/*
|--------------------------------------------------------------------------
| The search options
|--------------------------------------------------------------------------
|
*/
"search" => [
'search' => [
/*
|--------------------------------------------------------------------------
| The folders the package uses to scan for translation keys
|--------------------------------------------------------------------------
|
*/
"folders" => [
base_path("app"),
resource_path("views"),
'folders' => [
base_path('app'),
resource_path('views'),
],
/*
|--------------------------------------------------------------------------
| Enter specific files
|--------------------------------------------------------------------------
|
*/
"files" => [
'files' => [
],
/*
|--------------------------------------------------------------------------
| The folders the package excludes from scanning
|--------------------------------------------------------------------------
|
*/
"exclude" => [
"storage",
'exclude' => [
'storage',
],
/*
|--------------------------------------------------------------------------
| The files the package uses to scan for translation keys
|--------------------------------------------------------------------------
|
*/
"file_extension" => [
'file_extension' => [
'*.php',
'*.js',
]
],
],
/*
|--------------------------------------------------------------------------
| The methods used to translate keys
|--------------------------------------------------------------------------
|
*/
"translation_methods" => [
'translation_methods' => [
'\$t',
'i18n.t',
'@lang',