我正在开发一个需要安全连接的项目.
我可以设置路线,uri,资产使用'https'通过:
Route::get('order/details/{id}', ['uses' => 'OrderController@details', 'as' => 'order.details', 'https']);
url($language.'/index', [], true)
asset('css/bootstrap.min.css', true)
Run Code Online (Sandbox Code Playgroud)
但是始终设置参数似乎很累人.
有没有办法强制所有路由生成HTTPS链接?
我试图在我的布局中使用它,我突然想到使用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
Run Code Online (Sandbox Code Playgroud)