漂亮的 Laravel Blade 指令的集合。
您可以通过 Composer 安装该软件包:
composer require appstract/laravel-blade-directives
仅当$variable
isset 且 true 时显示。
@istrue ( $variable )
This will be echoed
@endistrue
或者当你想快速回显时
@istrue ( $variable , ' This will be echoed ' )
与@istrue
相同,但检查 isset 和 false。
@isfalse ( $variable )
This will be echoed
@endisfalse
仅当$variable
为 null 时显示。
@isnull ( $variable )
This will be echoed
@endisnull
与@isnull
相同,但当$variable
不为 null 时显示。
@isnotnull ( $variable )
This will be echoed
@endisnotnull
@dump ( $var )
@dd ( $var )
为 Laravel-Mix css 或 js 创建一个 HTML 元素。
@mix ( ' /css/app.css ' )
@mix ( ' /js/app.js ' )
输出:
< link rel = " stylesheet " href = " {{ mix ( ' /css/app.css ' ) } } " >
< script src = " {{ mix ( ' /js/app.js ' ) } } " ></ script >
使用 css 路径创建<style>
元素或<link>
元素。
@style
body { background: black }
@endstyle
@style ( ' /css/app.css ' )
创建一个带有或不带有 js 路径的<script>
元素。
@script
alert('hello world')
@endscript
@script ( ' /js/app.js ' )
在视图中内联加载 css 或 js 文件的内容。
@inline ( ' /js/manifest.js ' )
与@push
相同,但仅包含一次内容。对于可重复块很有用。
第一个参数必须遵循语法stack-name:group-name
。
@pushonce ( ' js:foobar ' )
< script src = " {{ asset ( ' /js/foobar.js ' ) } } " ></ script >
@endpushonce
包含带有标准@stack
指令的推送:
@stack ( ' js ' )
检查当前路由名称是否等于给定参数。您可以使用通配符,例如blog.post.*
。
@routeis ( ' webshop.checkout ' )
Do something only on the checkout
@endrouteis
检查当前路由名称是否不等于给定参数。您可以使用通配符,例如blog.post.*
@routeisnot ( ' webshop.checkout ' )
Do something only if this is not the checkout
@endrouteisnot
检查第一个参数是否是第二个参数的实例。
@instanceof ( $user , ' AppUser ' )
User is an instance of AppUser
@endinstanceof
检查参数是否属于某种类型。
@typeof ( $text , ' string ' )
Text is a string
@endtypeof
重复某件事指定的次数。
@repeat ( 3 )
Iteration # {{ $iteration } }
@endrepeat
使用 Font Awesome、Material Design Icons 或 Glyphicon 快速输出图标。
@fa ( ' address-book ' , ' optional-extra-class ' )
// for Font Awesome 5 (solid, regular, light, brand, duotone):
@fas ( ' address-book ' , ' optional-extra-class ' )
@far ( ' address-book ' , ' optional-extra-class ' )
@fal ( ' address-book ' , ' optional-extra-class ' )
@fab ( ' address-book ' , ' optional-extra-class ' )
@fad ( ' address-book ' , ' optional-extra-class ' )
// for Material Design Icons
@mdi ( ' account ' , ' optional-extra-class ' )
// for Glyphicons
@glyph ( ' glass ' , ' optional-extra-class ' )
从数组输出数据属性。
@data ( [ ' testing ' => 123 ] )
快速输出经典的$errors->has('input_name')
以确定给定字段是否存在任何错误消息。
@haserror ( ' input_name ' )
This input has an error
@endhaserror
输出条目数。
@count ( [ 1 , 2 , 3 ] )
将n
替换为<br>
。
@nl2br ( ' foon barn bazn ' )
输出格式化字符串(使用 Laravel Helpers)。
@snake ( ' fooBar ' )
// output: 'foo_bar'
@kebab ( ' fooBar ' )
// output: 'foo-bar'
@camel ( ' foo bar ' )
// output: 'fooBar'
composer test
欢迎大家踊跃投稿,谢谢大家:)
Apptract 是一支来自荷兰的小团队。我们为 Web 开发人员创建(开源)工具,并在 Medium 上撰写相关主题。您可以在 Twitter 上关注我们、给我们买啤酒或在 Patreon 上支持我们。
麻省理工学院许可证 (MIT)。请参阅许可证文件以获取更多信息。