Initial commit
This commit is contained in:
31
app/Http/Controllers/LangJsController.php
Normal file
31
app/Http/Controllers/LangJsController.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Support\Facades\File;
|
||||
|
||||
class LangJsController extends Controller
|
||||
{
|
||||
/**
|
||||
* Returns a JavaScript file containing all the translations for the supported locales in Laravel.
|
||||
*
|
||||
* @return \Illuminate\Http\Response
|
||||
*/
|
||||
public function js()
|
||||
{
|
||||
$locales = config('app.locales');
|
||||
$translations = [];
|
||||
|
||||
foreach ($locales as $locale) {
|
||||
$strings = File::get(resource_path("lang/{$locale}.json"));
|
||||
// ds($strings)->label('LanJsController');
|
||||
$translations[$locale] = json_decode($strings, true);
|
||||
}
|
||||
|
||||
$js = "window.i18n = " . json_encode($translations) . ";";
|
||||
$response = response($js, 200);
|
||||
$response->header('Content-Type', 'application/javascript');
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user