LaravelPackages.net
Acme Inc.
Toggle sidebar
ideatocode/blade-stacks-pusher

Push arbitrary content to laravel stacks from anywhere

47.681
2
v1.0.0
About ideatocode/blade-stacks-pusher

ideatocode/blade-stacks-pusher is a Laravel package for push arbitrary content to laravel stacks from anywhere. It currently has 2 GitHub stars and 47.681 downloads on Packagist (latest version v1.0.0). Install it with composer require ideatocode/blade-stacks-pusher. Discover more Laravel packages by ideatocode or browse all Laravel packages to compare alternatives.

Last updated

Push arbitrary content to laravel stacks from anywhere

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Push arbitrary content to laravel stacks from anywhere.

Installation

You can install the package via composer:

composer require ideatocode/blade-stacks-pusher

Usage

use Ideatocode\BladeStacksPusher\Facades\BSP;

BSP::push('scripts', function () {
    return '<script>console.log("It Works!")</script>';
});
BSP::push('scripts', '<script>console.log("This also works!")</script>');
BSP::push('scripts', view('test'));

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments