php – 如何将数组传递给laravel 5.4中的@slot?

前端之家收集整理的这篇文章主要介绍了php – 如何将数组传递给laravel 5.4中的@slot?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在我的布局中使用它,我突然想到使用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
我需要同样的东西.

这可以作为暂时的解决方案,但不是最好的形式.

@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
原文链接:https://www.f2er.com/laravel/445089.html

猜你在找的Laravel相关文章