mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
25 lines
742 B
PHP
25 lines
742 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
/*
|
||
|
* Language lines will be fetched by these loaders. You can put any class here that implements
|
||
|
* the Spatie\TranslationLoader\TranslationLoaders\TranslationLoader-interface.
|
||
|
*/
|
||
|
'translation_loaders' => [
|
||
|
Spatie\TranslationLoader\TranslationLoaders\Db::class,
|
||
|
],
|
||
|
|
||
|
/*
|
||
|
* This is the model used by the Db Translation loader. You can put any model here
|
||
|
* that extends Spatie\TranslationLoader\LanguageLine.
|
||
|
*/
|
||
|
'model' => Spatie\TranslationLoader\LanguageLine::class,
|
||
|
|
||
|
/*
|
||
|
* This is the translation manager which overrides the default Laravel `translation.loader`
|
||
|
*/
|
||
|
'translation_manager' => Spatie\TranslationLoader\TranslationLoaderManager::class,
|
||
|
|
||
|
];
|