How to load json file into Laravel Controller?

Solution:1

Here, this should help you get sorted.

use Storage;

$json = Storage::disk('local')->get('calendar_Ids.json');
$json = json_decode($json, true);

Solution:2

Try this

$path = '/storage/app/calendar_Ids.json';
$content = json_decode(file_get_contents($path), true);`

Then just dd($content); to see if it works.