admin管理员组文章数量:1417691
I Have a blade directive, register in AppServiceProvider, @rupiah
I want to use my directive in my laravel component.
<x-form.input name="NLTRX" label="Nilai Transaksi" disabled="true" value="{{ rupiah($retailPending['NLTRX']) }}" />
But its return error, Call to undefined function rupiah().
Any solutions?
I try using
value="{{ rupiah($retailPending['NLTRX']) }}"
:value=" rupiah($retailPending['NLTRX']) "
:value="@rupiah($retailPending['NLTRX']) "
It did'nt work either
I Have a blade directive, register in AppServiceProvider, @rupiah
I want to use my directive in my laravel component.
<x-form.input name="NLTRX" label="Nilai Transaksi" disabled="true" value="{{ rupiah($retailPending['NLTRX']) }}" />
But its return error, Call to undefined function rupiah().
Any solutions?
I try using
value="{{ rupiah($retailPending['NLTRX']) }}"
:value=" rupiah($retailPending['NLTRX']) "
:value="@rupiah($retailPending['NLTRX']) "
It did'nt work either
1 Answer
Reset to default 0Instead of calling rupiah()
in the attribute, you can use the directive inside the component.
Modify your Blade component template (form/input.blade.php):
<input type="text" name="{{ $name }}" value="@rupiah($value)" {{ $attributes }} />
Then, use the component like this:
<x-form.input name="NLTRX" label="Nilai Transaksi" disabled="true" :value="$retailPending['NLTRX']" />
本文标签: phpHow To use Blade Directive in ComponentStack Overflow
版权声明:本文标题:php - How To use Blade Directive in Component - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745275849a2651180.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论