我初學Laravel framework.I有CategoryController
和allCategory.blade.php
view.I有welcome.blade.php
view.Now我想在welcome.blade.php
view.When我想它的節目未定義的變量插入所有類別值:$category
如何在Laravel中將變量從一個視圖包含到另一個視圖?
allCategory.blade.php:
@if(count($categories))
<table id="example2" class="table table-bordered table-hover" width="65%">
<thead>
<tr>
<th># Index</th>
<th>Category Name</th>
<th>Action</th>
</tr>
</thead>
<tbody>
@foreach($categories as $category)
<tr>
<td>{{$category->sortInd}}</td>
<td>{{$category->categoryName}}</td>
<td><a class="btn btn-info badge bg-light-blue" href="{{route('editCategory',$category->id)}}">Edit</a> | <a class="btn btn-danger badge bg-red" href="{{route('deleteCategory',$category->id)}}">Delete</a></td>
</tr>
@endforeach
</tbody>
</table>
{{$categories->links()}}
@endif
CategoryController:
public function index()
{
$categories = Category::where('id', '>=', 1)->paginate(10);
return view('jobs.allCategory', ['categories' => $categories]);
}
我想要這種solution。但它不起作用。
現在我想顯示類別值相同allCategory.blade.php
。如何可以從一個視圖到另一個視圖傳遞變量值?先謝謝了。
N.B:如果你需要的所有文件,請讓我知道。
你是如何在你的控制器中加載這個視圖的?包括你的控制器的片段 – geckob
@geckob請see.I已更新我的問題。我可以看到完美的'allCategory.blade.php'視圖,但我怎麼能看到'welcome.blade.php視圖'? –
如何在'allCategory'視圖中加載'welcome'視圖? 「受歡迎」會成爲你的局部看法嗎? – geckob