getFillable(); $this->assertContains('paused_at', $fillable); } public function test_paused_at_is_cast_to_datetime(): void { $casts = (new Project)->getCasts(); $this->assertArrayHasKey('paused_at', $casts); $this->assertSame('datetime', $casts['paused_at']); } }