Added telescope, basic project endpoint, basic filament resources, GitHub actions

This commit is contained in:
Constantin Graf
2024-01-28 18:57:28 +01:00
parent e4f0eac834
commit e60e502612
80 changed files with 2563 additions and 135 deletions

View File

@@ -26,4 +26,11 @@ class OrganizationFactory extends Factory
'personal_team' => true,
];
}
public function withOwner(): self
{
return $this->state(fn (array $attributes) => [
'user_id' => User::factory(),
]);
}
}