PATH:
home
/
rwabteecom
/
public_html
/
app
/
Providers
/
Editing: AppServiceProvider.php
<?php namespace App\Providers; use Illuminate\Contracts\Routing\UrlGenerator; use Illuminate\Support\Facades\View; use Illuminate\Support\ServiceProvider; use Mariuzzo\LaravelJsLocalization\Commands\LangJsCommand; use Mariuzzo\LaravelJsLocalization\Generators\LangJsGenerator; class AppServiceProvider extends ServiceProvider { /** * Register any application services. */ public function register(): void { // Bind the Laravel JS Localization command into the app IOC. $this->app->singleton('localization.js', function ($app) { $app = $this->app; $laravelMajorVersion = (int) $app::VERSION; $files = $app['files']; if ($laravelMajorVersion === 4) { $langs = $app['path.base'].'/app/lang'; } elseif ($laravelMajorVersion >= 5 && $laravelMajorVersion < 9) { $langs = $app['path.base'].'/resources/lang'; } elseif ($laravelMajorVersion >= 9) { $langs = app()->langPath(); } $messages = $app['config']->get('localization-js.messages'); $generator = new LangJsGenerator($files, $langs, $messages); return new LangJsCommand($generator); }); } /** * Bootstrap any application services. */ public function boot(): void { // \URL::forceScheme('https'); app()->useLangPath(base_path('lang')); View::share('mixID', time()); } }
SAVE
CANCEL