'integer', 'starts_at' => 'datetime', 'ends_at' => 'datetime', 'is_active' => 'boolean', ]; public function collection(): BelongsTo { return $this->belongsTo(Collection::class); } public function creator(): BelongsTo { return $this->belongsTo(User::class, 'created_by_user_id'); } }