Answers for "json file read in laravel"

PHP
2

laravel read json file from storage

$path = storage_path() . "/json/${filename}.json"; // ie: /var/www/laravel/app/storage/json/filename.json

$json = json_decode(file_get_contents($path), true);
Posted by: Guest on October-29-2020

Browse Popular Code Answers by Language