我试图在我的布局中使用它,我突然想到使用Laravel 5.4 @slot的新功能.
只是想知道是否可以将阵列传递到插槽?
@section('SampleSection') @component( 'mylayouts.partials.contentheader' ) @slot('title') Sample Title @endslot @slot('indexes') Pass array here // example [ 'a','b','c' ] @endslot @endcomponent @endsection
我需要同样的东西.
原文链接:https://www.f2er.com/laravel/445089.html这可以作为暂时的解决方案,但不是最好的形式.
@component('component.tab.header') @slot('navs',[ "a" => "Pepe","b" => "Maria" ]) @endcomponent
编辑:
最后,就我而言,我解决了这个问题:
@component('component-name') @slot('slot-name') Value1|Value2|Value2 @endslot @endcomponent
并在组件代码中:
@foreach(explode('|',$slot-name) as $value) The value is {{ $value }} <br/> @endforeach