mylesduncanking/laravel-auto-bind
Composer 安装命令:
composer require mylesduncanking/laravel-auto-bind
包简介
Abililty to automatically bind properties in Laravel
README 文档
README
Automatically bind route parameters to controller properties — clean, Laravel-native, and zero boilerplate.
Features
- ✅ Native route-model binding
- ✅ Reduce boilerplate in constructors
- ✅ Supports soft-deleted models
- ✅ Supports public and protected properties
- ✅ Use custom columns (e.g.
slug) - ✅ Easy to drop into existing Laravel apps
Installation
composer require mylesduncanking/laravel-auto-bind
Basic Usage
Add the #[AutoBindProperty] attribute to each controller property you want to bind. Properties must be typed and match the route parameter name. Both public and protected work:
use MylesDuncanKing\AutoBind\AutoBindProperty; #[AutoBindProperty] public Client $client;
Use a Custom Column
#[AutoBindProperty(column: 'slug')] public Client $client;
Bind Soft Deleted Records
#[AutoBindProperty(withTrashed: ['restore'])] public Client $client;
Call bind() in Your Constructor
use MylesDuncanKing\AutoBind\AutoBind; public function __construct() { AutoBind::bind($this); }
Tip: For DRY controllers, call AutoBind::bind($this) in a base abstract controller and extend it.
Accessing Bound Properties
Use them like any class property:
public function read() { echo $this->client->id; }
Or inject into a view:
return view('clients.read', AutoBind::bound($this, compact('foo')));
Full Example
routes/web.php
Route::get('clients/{client}/{tab?}', [ClientsController::class, 'read'])->name('client.read');
ClientsController.php
use App\Models\Client; use MylesDuncanKing\AutoBind\AutoBind; use MylesDuncanKing\AutoBind\AutoBindProperty; class ClientsController extends \Illuminate\Routing\Controller { #[AutoBindProperty(withTrashed: ['restore'])] protected Client $client; public function __construct() { AutoBind::bind($this); } public function read($tab = 'index') { return view('clients.read', AutoBind::bound($this, compact('tab'))); } public function update() { $this->client->update( request()->validate(['name' => ['required', 'string', 'max:40']]) ); return redirect()->back(); } public function delete() { $this->client->delete(); return redirect()->route('clients'); } public function restore() { $this->client->restore(); return redirect()->route('clients'); } }
Why Laravel Auto Bind?
- ✨ Less boilerplate
- 🔁 Cleaner, focused controllers
- 🧠 No new magic — pure Laravel route binding
- 🔍 Fine-tune with soft deletes and custom columns
License
MIT
mylesduncanking/laravel-auto-bind 适用场景与选型建议
mylesduncanking/laravel-auto-bind 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 76 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「route model binding」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mylesduncanking/laravel-auto-bind 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mylesduncanking/laravel-auto-bind 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mylesduncanking/laravel-auto-bind 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Provide a way to secure accesses to all routes of an symfony application.
Write down your routing mapping at one place
Interfaces for web resource models and services to retrieve and create them
A Laravel-like router for the WordPress Rewrite API
Laravel 5 - Repositories to the database layer
统计信息
- 总下载量: 76
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-11-11