laravel Notifications获取id只能显示成整型
比如原本的 id 是
296bcb4a-14d2-4067-a708-2310f4b172c0
ORM 查询 id 只能获取到296
需要在 Notifications 的 Model 中加入
public $incrementing = false;
如
class Notifications extends Model
{
protected $table = 'notifications';
protected $fillable = [''];
public $incrementing = false;
}
登录之后才能参与