au9500/laravel-blade-push-once-directive 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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 @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.

统计信息

  • 总下载量: 45
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-13

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固