bluora / laravel-extras
dev-master
2017-09-08 01:55 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- codeclimate/php-test-reporter: dev-master
- illuminate/database: 4.*|5.*
- phpunit/phpunit: 4.*
- symfony/process: ~2.3
This package is not auto-updated.
Last update: 2022-02-01 13:03:09 UTC
README
为 Laravel 5 提供各种附加功能和功能。
此包由澳大利亚精品开发商 H&H|Digital 开发。访问我们的网站 hnh.digital。
提供
- Blade 指令以减少 blade 模板中的 PHP。
安装
通过 composer
$ composer require hnhdigital-os/laravel-extras dev-master
通过编辑 config/app.php 启用额外的 blade 指令
'providers' => [ ... Bluora\LaravelExtras\BladeDirectiveServiceProvider::class, ... ];
用法
在 blade 模板中
@call('test()') @csrf @raw(echo 'This is a raw command')
将渲染为
<?php test(); ?> <?= csrf_field(); ?> <?php echo 'This is a raw command'; ?>
贡献
有关详细信息,请参阅 CONTRIBUTING。
鸣谢
许可
MIT 许可证 (MIT)。有关更多信息,请参阅 许可文件。