AndyAndy

1202 经验值

請問老師,
notifications 中已已經有新增紀錄
但是當要輸出的時候,卻顯示沒有紀錄null
Route::get('/notification/test', function () {

$user = Auth::user(); //已經登入
dd($user->name, $user->notifications);

});

//dd 輸出
user=> name Andy
notifications => null