Answers for "laravel from json file to array"

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
1

convert php array to javascript json laravel

<script>
	var js_json_obt = @json($php_array ?? '');
</scritp>
Posted by: Guest on December-07-2020

Code answers related to "laravel from json file to array"

Browse Popular Code Answers by Language