标签: laravel
使用find where
find
$user = Auth::user(); $userId = intval($user->id); $userType = Usertype::find($userId);
$userType
protected $primaryKey = 'id';也为空 你能否建议我为什么得到null值
protected $primaryKey = 'id';
null
如果我使用$userType = Usertype::find('55');,则可以正常使用
$userType = Usertype::find('55');