Add Turkmen translations for edit and delete actions; update Pilgrim model with property annotations, and enhance PilgrimsRelationManager with localized table heading and model label.

This commit is contained in:
2025-08-31 14:18:33 +05:00
parent 6b6f358aa7
commit 34e78c5e43
21 changed files with 820 additions and 10 deletions

32
config/boost.php Normal file
View File

@@ -0,0 +1,32 @@
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------
| Boost Master Switch
|--------------------------------------------------------------------------
|
| This option may be used to disable all Boost functionality - which
| will prevent Boost's routes from being registered and will also
| disable Boost's browser logging functionality from operating.
|
*/
'enabled' => env('BOOST_ENABLED', true),
/*
|--------------------------------------------------------------------------
| Boost Browser Logs Watcher
|--------------------------------------------------------------------------
|
| The following option may be used to enable or disable the browser logs
| watcher feature within Laravel Boost. The log watcher will read any
| errors within the browser's console to give Boost better context.
*/
'browser_logs_watcher' => env('BOOST_BROWSER_LOGS_WATCHER', true),
];