Package Data | |
---|---|
Maintainer Username: | coderello |
Package Create Date: | 2019-03-18 |
Package Last Update: | 2023-02-01 |
Home Page: | https://coderello.com/docs/laravel-shared-data/1.0/sharing-data |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:07:25 |
Package Statistics | |
---|---|
Total Downloads: | 73,471 |
Monthly Downloads: | 410 |
Daily Downloads: | 19 |
Total Stars: | 321 |
Total Watchers: | 5 |
Total Forks: | 23 |
Total Open Issues: | 3 |
Laravel Shared Data provides an easy way to share the data from your backend to the JavaScript.
For installation instructions and usage details, please take a look at the official documentation.
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');
Do you like this project? Support it by donating:
Laravel Shared Data is open-sourced software licensed under the MIT license.