我怎么能從數(shù)據(jù)庫created_data,在laravel中雄辯?,我使用的屬于許多關(guān)系,我想顯示借閱的書籍?dāng)?shù)據(jù)和借入的日期,我已經(jīng)成功顯示了借閱的書籍?dāng)?shù)據(jù),但我無法從數(shù)據(jù)庫中的另一個(gè)表中獲取created_at數(shù)據(jù),名為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數(shù)據(jù).php@foreach($borrow_history as $borrow) <p> <i class="material-icons">date_range</i> Borrow_date : {{ ???? }} </p>@endforeach任何人都可以幫我嗎?
1 回答

喵喵時(shí)光機(jī)
TA貢獻(xiàn)1846條經(jīng)驗(yàn) 獲得超7個(gè)贊
當(dāng)您使用 Laravel 加載(多對(duì)多)關(guān)系時(shí),它將在該關(guān)系上包含一個(gè) pivot 屬性。由于您在關(guān)系上,它將包括 和 值。belongsToMany
withTimestamps()
created_at
updated_at
您應(yīng)該能夠通過以下方式實(shí)現(xiàn)您所追求的目標(biāo):
$borrow->pivot->created_at;
有關(guān)詳細(xì)信息,可以參考文檔(向下滾動(dòng)到檢索中間表列))
- 1 回答
- 0 關(guān)注
- 135 瀏覽
添加回答
舉報(bào)
0/150
提交
取消