| 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: | 2025-10-30 03:07:24 |
| Package Statistics | |
|---|---|
| Total Downloads: | 76,367 |
| Monthly Downloads: | 156 |
| Daily Downloads: | 19 |
| Total Stars: | 316 |
| Total Watchers: | 4 |
| Total Forks: | 24 |
| 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.