au9500/laravel-blade-push-once-directive

Blade @pushOnce directive for idempotent stack pushes in Laravel.

Installs: 39

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/au9500/laravel-blade-push-once-directive

v1.0.0 2026-01-13 15:03 UTC

This package is auto-updated.

Last update: 2026-02-13 15:12:02 UTC


README

A lightweight Laravel Blade extension that adds an idempotent @pushOnce directive. This ensures Blade stack content is pushed only once, even if the directive appears multiple times or inside repeatedly included partials or components.

Prevent duplicate JavaScript, CSS, or inline script blocks effortlessly. ✨

✨ Features

  • 🧩 Idempotent Blade @pushOnce directive
  • πŸ”‘ Optional unique key support
  • βš™οΈ Auto-generated key (based on file + line) if none provided
  • πŸ” Works in partials, components, includes, and layouts
  • 🚫 Prevents duplicate pushes completely
  • πŸͺΆ Zero output buffering, fully Blade-native
  • πŸ§ͺ Fully tested with PHPUnit + Testbench
  • πŸ“¦ Minimal and clean implementation

πŸ“¦ Installation

composer require au9500/laravel-blade-push-once-directive

Laravel automatically discovers the service provider.

πŸ›  Usage

πŸ”Ή Basic Example

@pushOnce('scripts')

<script src="/js/app.js"></script>

@endPushOnce

Even if included many times, this script is pushed only once into the scripts stack.

πŸ”Ή With a Custom Key

@pushOnce('styles', 'datepicker')

@endPushOnce

Ensures this block is pushed once per request.

πŸ”Ή In Partials

resources/views/partials/scripts.blade.php:

@pushOnce('scripts')

<script>console.log('loaded');</script>

@endPushOnce

Usage:

@include('partials.scripts')
@include('partials.scripts')
@include('partials.scripts')

Only one script block will appear in the final output. βœ”οΈ

πŸ”Ή In Layouts

@stack('scripts')

Any @pushOnce('scripts') from child views will be injected here β€” exactly once.

πŸ” How It Works

The directive checks an internal registry:

  • If the stack/key combo has not been used yet β†’ the content is pushed normally.
  • If it has been used β†’ the entire block is skipped.

No output buffering, no duplicated content, fully compatible with Blade’s native stack behavior. 🧠

πŸ§ͺ Running Tests

vendor/bin/phpunit

Included tests:

  • Same key twice β†’ only one push
  • Different keys β†’ all pushed
  • Partials included multiple times β†’ only one push
  • Auto-generated default key behavior
  • Full HTML rendering through layouts & stacks

πŸ›‘ Requirements

  • PHP 8.2+
  • Laravel 10.x / 11.x / 12.x

🀝 Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Commit your changes
  4. Open a pull request

πŸ“„ License

MIT License.