diff --git a/composer.json b/composer.json index b92edb4..19db02a 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,7 @@ "directorytree/ldaprecord-laravel": "^3.0", "laravel/framework": "^11.9", "laravel/sanctum": "^4.0", - "laravel/ui": "^4.5", - "mcamara/laravel-localization": "^2.0" + "laravel/ui": "^4.5" }, "require-dev": { "barryvdh/laravel-debugbar": "^3.6", diff --git a/composer.lock b/composer.lock index c3afdfd..b57bc5b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "02daf17113d0dcc1f5386ed7ce10f97c", + "content-hash": "c513b2b51a8ad7dfe055c7861c9d6b2a", "packages": [ { "name": "brick/math", @@ -2209,82 +2209,6 @@ ], "time": "2024-12-08T08:18:47+00:00" }, - { - "name": "mcamara/laravel-localization", - "version": "v2.2.1", - "source": { - "type": "git", - "url": "https://github.com/mcamara/laravel-localization.git", - "reference": "a19ddcc634dff6b06ae35ecb7f06b2a0444e9807" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/mcamara/laravel-localization/zipball/a19ddcc634dff6b06ae35ecb7f06b2a0444e9807", - "reference": "a19ddcc634dff6b06ae35ecb7f06b2a0444e9807", - "shasum": "" - }, - "require": { - "laravel/framework": "^10.0|^11.0", - "php": "^8.2" - }, - "require-dev": { - "orchestra/testbench-browser-kit": "^8.5|^9.0", - "phpunit/phpunit": "^10.1" - }, - "suggest": { - "ext-intl": "*" - }, - "type": "library", - "extra": { - "laravel": { - "aliases": { - "LaravelLocalization": "Mcamara\\LaravelLocalization\\Facades\\LaravelLocalization" - }, - "providers": [ - "Mcamara\\LaravelLocalization\\LaravelLocalizationServiceProvider" - ] - } - }, - "autoload": { - "psr-0": { - "Mcamara\\LaravelLocalization": "src/" - }, - "classmap": [] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Marc Cámara", - "email": "mcamara88@gmail.com", - "role": "Developer" - } - ], - "description": "Easy localization for Laravel", - "homepage": "https://github.com/mcamara/laravel-localization", - "keywords": [ - "laravel", - "localization", - "php" - ], - "support": { - "issues": "https://github.com/mcamara/laravel-localization/issues", - "source": "https://github.com/mcamara/laravel-localization/tree/v2.2.1" - }, - "funding": [ - { - "url": "https://github.com/iwasherefirst2", - "type": "github" - }, - { - "url": "https://github.com/mcamara", - "type": "github" - } - ], - "time": "2024-11-27T21:06:34+00:00" - }, { "name": "monolog/monolog", "version": "3.8.1", diff --git a/resources/themes/architect/views/layouts/partials/sidebarmenu.blade.php b/resources/themes/architect/views/layouts/partials/sidebarmenu.blade.php index 68ee523..201f977 100644 --- a/resources/themes/architect/views/layouts/partials/sidebarmenu.blade.php +++ b/resources/themes/architect/views/layouts/partials/sidebarmenu.blade.php @@ -35,17 +35,17 @@
  • {{ $server ?? __('Server Name') }}
  • - +
    - +
    - +
    @env(['local'])
    - +
    @endenv
    diff --git a/routes/web.php b/routes/web.php index f5472a9..5c4412f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -16,23 +16,21 @@ use App\Http\Controllers\Auth\LoginController; | */ -Route::group(['prefix' => LaravelLocalization::setLocale()], function() { - Auth::routes([ - 'login' => TRUE, - 'logout' => TRUE, - 'reset' => FALSE, - 'confirm' => FALSE, - 'verify' => FALSE, - 'register' => FALSE, - ]); +Auth::routes([ + 'login' => TRUE, + 'logout' => TRUE, + 'reset' => FALSE, + 'confirm' => FALSE, + 'verify' => FALSE, + 'register' => FALSE, +]); - Route::get('/',[HomeController::class,'home']); - Route::get('info',[HomeController::class,'info']); - Route::post('dn',[HomeController::class,'dn_frame']); - Route::get('debug',[HomeController::class,'debug']); - Route::get('import',[HomeController::class,'import_frame']); - Route::get('schema',[HomeController::class,'schema_frame']); -}); +Route::get('/',[HomeController::class,'home']); +Route::get('info',[HomeController::class,'info']); +Route::post('dn',[HomeController::class,'dn_frame']); +Route::get('debug',[HomeController::class,'debug']); +Route::get('import',[HomeController::class,'import_frame']); +Route::get('schema',[HomeController::class,'schema_frame']); Route::get('logout',[LoginController::class,'logout']);