wip on loan order

This commit is contained in:
2023-11-27 01:19:42 +05:00
parent 307f197d27
commit 0fcdedbcc7
6 changed files with 322 additions and 9 deletions

76
config/locale-finder.php Normal file
View File

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