laravel open json file in storage

JavaScript
$path = storage_path() . "/json/${filename}.json"; // ie: /var/www/laravel/app/storage/json/filename.json
$json = json_decode(file_get_contents($path), true); 
Source

Also in JavaScript: