laravel 5.6菜单表如何链接不同的页面部分

时间:2018-02-25 23:13:52

标签: php mysql laravel laravel-5.6

有人建议我创建一个菜单表模式,我可以链接到页面的不同部分,菜单表结构是: -

public function up()
    {
        Schema::create('menus', function (Blueprint $table) {
            $table->increments('id');
            $table->string('name');
            $table->integer('parent');
            $table->enum('type', ['section', 'static', 'article', 'url']);
            $table->timestamps();
        });
    }

这些是其他表结构。

statics: id, title, image, content
sections: id, title, description 
widgets: id, type[artcles, static, video, gallery], page[section to appear], ordering[smallint], articles[list, optional, video, gallery, code]
articles: id, title, image, content, section_id

我想要的是创建一个包含大量页面的网站,主页上有不同的小部分,例如关于我们' '我们做什么' '我们的服务' '我们的员工'等等,当我点击阅读这些部分的更多链接,转到该部分的特定页面。

我的问题是我如何在表格的模型中建立关系以及我应该创建哪些视图刀片页面?我希望小部件也是静态的和动态的。

1 个答案:

答案 0 :(得分:0)

你是说这样的意思吗?

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>

<nav class="navbar navbar-inverse">
  <div class="container-fluid">
    <div class="navbar-header">
      <a class="navbar-brand" href="#">WebSiteName</a>
    </div>
    <ul class="nav navbar-nav">
      <li class="active"><a href="#">Home</a></li>
      <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Page 1 <span class="caret"></span></a>
        <ul class="dropdown-menu">
          <li><a href="#">Page 1-1</a></li>
          <li><a href="#">Page 1-2</a></li>
          <li><a href="#">Page 1-3</a></li>
        </ul>
      </li>
      <li><a href="#">Page 2</a></li>
      <li><a href="#">Page 3</a></li>
    </ul>
  </div>
</nav>

<div class="container">
  <h3>Navbar With Dropdown</h3>
  <p>This example adds a dropdown menu for the "Page 1" button in the navigation bar.</p>
</div>

</body>
</html>