我怎么能从数据库created_data,在laravel中雄辩?,我使用的属于许多关系,我想显示借阅的书籍数据和借入的日期,我已经成功显示了借阅的书籍数据,但我无法从数据库中的另一个表中获取created_at数据,名为borrow_history书.phppublic function borrowed(){ return $this->belongsToMany(User::class, 'borrow_history') ->withTimestamps();}用户.phppublic function borrow(){ return $this->belongsToMany(Book::class, 'borrow_history') ->withTimestamps();}这是我目前的HomeController.php索引public function index(){ $books = auth()->user()->borrow; return view('home', [ 'books' => $books, ]);}我想在home.blade上显示created_at数据.php@foreach($borrow_history as $borrow) <p> <i class="material-icons">date_range</i> Borrow_date : {{ ???? }} </p>@endforeach任何人都可以帮我吗?
- 1 回答
- 0 关注
- 103 浏览
添加回答
举报
0/150
提交
取消