我在 Laravel 中有一个项目,我想在 index.blade 中从我的数据库中显示一篇文章所以在控制器中,我得到了这篇文章并将其保存在一个变量中 问题是:那篇文章的图像不在 index.blade 中,它在公共目录中的 css 中,所以我如何用我得到的图像更改它表格数据库?在我的 css 文件中,您可以看到该图像作为 url控制器 public function home(Request $request){ $headerIntroduction=Category::where('name','معرفی کسب و کار')->get()->first()->articles()->get()->values()[1]; return view('app.index',compact('headerIntroduction'));css#slider-section, #home-section{background-image:url(../../images/app/slider/1.jpg);background-repeat:no-repeat;background-size:cover;background-color:#282f1f;position:relative;color:#fff;padding: 130px 0;}
2 回答
梵蒂冈之花
TA贡献1900条经验 获得超5个赞
你应该在 balde 文件中有你的 css for beackground-image 。
<style>
#slider-section, #home-section{
background-image:url({{$headerIntroduction->image}});
background-repeat:no-repeat;
background-size:cover;
background-color:#282f1f;
position:relative;
color:#fff;
padding: 130px 0;
}
</style>
这里的图像是数据库表中列的名称。
- 2 回答
- 0 关注
- 218 浏览
添加回答
举报
0/150
提交
取消