Stars: 323
Forks: 18
Pull Requests: 20
Issues: 13
Watchers: 5
Last Updated: 2023-02-01 23:40:23
📦 An easy way to share the data from your backend to the JavaScript.
License: MIT License
Languages: PHP, Blade
https://coderello.com/docs/laravel-shared-data/1.0/sharing-data
Laravel Shared Data provides an easy way to share the data from your backend to the JavaScript.
Install the package:
composer require coderello/laravel-shared-data
Include the @shared
directive into your blade layout before all scripts.
Share the data from within Laravel:
share(['user' => $user, 'title' => $title]);
Access the data from the JavaScript directly:
const user = window.sharedData.user;
const title = window.sharedData.title;
Or using the built-it global helper:
const user = shared('user');
const title = shared('title');
Laravel Shared Data is open-sourced software licensed under the MIT license.