美文网首页
Laravel的数据库模型如何绑定

Laravel的数据库模型如何绑定

作者: Songzh | 来源:发表于2017-04-04 20:49 被阅读0次

工具

编辑器:Phpstorm
系统:Win10
环境:WAMP
数据库建模:Mysql Workbench

前言

根据上一个教程,我们现在可以在workbench中建立数据模型,并同步到数据库。
现在,我们还需创建下图几个数据库

member.png categroy.png product.png pro_content.png pro_img.png

Laravel绑定数据库

在phpstrom中打开Laravel文件夹

1.修改.env文件,如下图

env.png

2.新建Member.php文件,注意类名一定要和文件名相同,如下图

Member.png

3.添加路由,查看是否绑定成功

routes.png

4.在浏览器中是输入http://localhost/laravel/public/

查看数据.png

5.如果你返回的是 [] 那说明你在Member中未添加数据。

Paste_Image.png

6.根据上述步骤,再建立另外四个表的模型。

相关文章

网友评论

      本文标题:Laravel的数据库模型如何绑定

      本文链接:https://www.haomeiwen.com/subject/eeezottx.html