Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个main.blade.php包含我的布局。作为此布局的一部分,我需要显示数据库中的类别。
main.blade.php
我想避免Eloquent在每个控制器中进行调用。
Eloquent
main.blade.php无论控制器如何,如何检索所有要显示的类别?
您可以在基本控制器或您拥有的视图布局中执行此操作。
在视图中它将是:
@foreach(Category::all() as $category
对于基本控制器,它将类似于:
$this->layout->categories = Category::all();
希望这可以帮助!
http://laravel.com/docs/templates
在模板中调用单个操作会很棒吗?:)
你可以检查这个包(检查布局外观部分)。希望能帮助到你。