'int', 'plan_id' => 'int', 'current_period_end' => 'datetime', 'cancel_at' => 'datetime', 'canceled_at' => 'datetime', ]; protected $fillable = [ 'user_id', 'plan_id', 'current_period_end', 'cancel_at', 'canceled_at', ]; public function user() { return $this->belongsTo(User::class, 'user_id'); } public function plan() { return $this->belongsTo(Plan::class, 'plan_id'); } }