'datetime', 'updated_at' => 'datetime']; const STATUSES = [ 'plan' => 'İzlenecek', 'watching' => 'İzleniyor', 'completed' => 'Tamamlandı', 'dropped' => 'Bırakıldı', ]; public function user() { return $this->belongsTo(User::class); } public function anime() { return $this->belongsTo(Anime::class); } }