@php
$modulePath = storage_path('app/module_library.json');
$fileContents = file_get_contents($modulePath);
$jsonData = json_decode($fileContents, true);
$modules = $jsonData['modules']['ru'];
$methodPath = storage_path('app/module_library.json');
$methodContents = file_get_contents($methodPath);
$methodData = json_decode($methodContents, true);
$modules = $methodData['modules']['ru'];
@endphp