au9500/laravel-blade-push-once-directive
最新稳定版本:v1.0.0
Composer 安装命令:
composer require au9500/laravel-blade-push-once-directive
包简介
Blade @pushOnce directive for idempotent stack pushes in Laravel.
README 文档
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
@pushOncedirective - 🔑 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')
@endPushOnceEnsures 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
- Fork the repository
- Create a feature branch
- Commit your changes
- Open a pull request
📄 License
MIT License.
统计信息
- 总下载量: 45
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-13