$userId = Auth::user()->id; $info = User::where('id',$userId)->with(['favorites'])->get(); return view('users.favorite',compact('info'));
500错误,什么都加了,就是获取不到user,laravel5.5版本还需要额外配置什么吗?
There was an error while executing `VBoxManage`, a CLI used by Vagrant for controlling VirtualBox. The command and stderr is shown below. Command: ["startvm", "cabb75bf-2d77-470e-9419-f522ee2c5f5e", "--type", "headless"]
据说是权限问题,具体该怎么操作呢?
因为安装了一个插件,插件示例出来一个路由用于演示,现在要是把这个路由给删掉呢?
Laravel删除不在web.php的路由的方式是什么?
我忘了,你可以试试oneinstack一键安装包,如果你急着上线网站,没什么问题。
在src下,{URL::asset('xx.png’)}和/xx.png有什么区别啊?
我的图片存在public/images目录下,数据库avatar字段不应该直接是/images/xxx.png吗?
src="{URL::asset('/images/default-avatar.png')}"
,
把静态地址换成 { Auth::user()->avatar }
后端的,类似Auth的登录检查验证