我想不出如何为这个问题写下问题。
所以这是我的问题。
我有两个观点
店铺侧-menu.blade.php
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
@foreach($store_categories as $cats)
<a href="#">{{ $cats->category_of_store }}</a>
@endforeach
employ.blade.php
@section('side-menu-section')
@include('fc.static.store-side-menu')
@endsection
employ.blade.php
仅包含store-side-menu.blade.php
。我根据需要设计了这种结构。
在控制器中我有
public function employment()
{
$search = "";
$store_categoies = Category::all();
return view('fc.employ.employ', compact('search', 'store_categories'));
}
现在我已在store_categories
中加入了compact
,但store-side-menu.blade.php
无法访问它。我如何通过其解决方案实现。
答案 0 :(得分:1)
尝试下面的代码,你应该好好去:
@section('side-menu-section')
@include('fc.static.store-side-menu', ['store_categories' => $store_categories])
@endsection