如何使用 Laravel 创建数据库驱动的多级导航菜单
问题描述
我是 Laravel 4 的新手,我对它的模型完全感到困惑.我正在尝试为我的项目创建一个数据库驱动的导航菜单,我所知道的是我必须创建一个模型来与数据库交互(基于我从 codeigniter 获得的知识).我一直在学习,我厌倦了无法前进,这是我到现在想出的代码:
I'm new to Laravel 4 and I'm totally confused about it's models. I'm trying to create a database-driven navigation menu for my project and all I know is I have to create a model to interact with the database (based on my knowledge from codeigniter). I have been studying alot and I'm tired of not being able to go forward, this is the code I have come up with till now:
/app/models/navigation.php
这是我将用于此模型的导航数据库表:
And this is my Navigation database table I will use for this Model:
推荐答案
所以在从不同来源进行更多搜索和阅读之后,这就是我想出的,并且运行良好:
So after doing much more searching and reading from different sources this is what I came up with and it's working fine:
/app/models/Navigation.php
/app/controllers/HomeController.php
/app/views/layouts/home/index.blade.php
这篇关于如何使用 Laravel 创建数据库驱动的多级导航菜单的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!