Remove welcome.blade.php and update various views to use translation functions for improved localization support. Changes include updating labels, titles, and alerts across multiple pages to utilize the __('') function, enhancing the application's internationalization capabilities.

This commit is contained in:
2025-07-29 16:39:27 +05:00
parent e927a912e1
commit 834822e182
13 changed files with 87 additions and 364 deletions

View File

@@ -5,7 +5,7 @@
@include('web.layouts.meta-tags')
<!-- Title of Site -->
<title>@isset($title) {{ "{$title} |" }} @endisset {{ $settings->name }}</title>
<title>@isset($title) {{ "{$title} " . __('|') . " " }} @endisset {{ $settings->name }}</title>
<!-- Favicons -->
@include('web.layouts.favicons')