hnhdigital-os / laravel-extras
为Laravel 5提供一系列扩展功能。
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 auto-updated.
Last update: 2024-09-22 02:02:36 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)。有关更多信息,请参阅许可证文件。