Laravel get file content
Try this code
File::get(storage_path('app\marquee.json'));
Using Storage
facade:
Storage::disk('local')->get('marquee.json');
The old way, using File
facade (deprecated for Laravel 7):
File::get(storage_path('app/marquee.json'));