第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何從數(shù)據(jù)庫中以雄辯的方式檢索created_at數(shù)據(jù)

如何從數(shù)據(jù)庫中以雄辯的方式檢索created_at數(shù)據(jù)

PHP
qq_花開花謝_0 2022-08-05 10:53:47
我怎么能從數(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)系上,它將包括 和 值。belongsToManywithTimestamps()created_atupdated_at

您應(yīng)該能夠通過以下方式實(shí)現(xiàn)您所追求的目標(biāo):

$borrow->pivot->created_at;

有關(guān)詳細(xì)信息,可以參考文檔(向下滾動(dòng)到檢索中間表列))


查看完整回答
反對(duì) 回復(fù) 2022-08-05
  • 1 回答
  • 0 關(guān)注
  • 135 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)