我怎么能从数据库created_data,在laravel中雄辩?,我使用的属于许多关系,我想显示借阅的书籍数据和借入的日期,我已经成功显示了借阅的书籍数据,但我无法从数据库中的另一个表中获取created_at数据,名为borrow_history
书.php
public function borrowed()
{
return $this->belongsToMany(User::class, 'borrow_history')
->withTimestamps();
}
用户.php
public 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
任何人都可以帮我吗?
喵喵时光机