|null $context */ class PendingNotification extends Model { protected $fillable = [ 'user_id', 'type', 'subject_name', 'context', ]; protected $casts = [ 'context' => 'array', ]; /** * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }