Fix styling

This commit is contained in:
Thijmen
2024-06-10 20:43:34 +00:00
committed by github-actions[bot]
parent 41fb6a1fc9
commit d86274cc37
429 changed files with 5307 additions and 2831 deletions

View File

@@ -16,9 +16,9 @@ class TestTeamSeeder extends Seeder
'email' => '1@example.com',
]);
$team = Team::create([
'name' => "1@example.com",
'name' => '1@example.com',
'personal_team' => false,
'show_boarding' => true
'show_boarding' => true,
]);
$user->teams()->attach($team, ['role' => 'owner']);
@@ -28,9 +28,9 @@ class TestTeamSeeder extends Seeder
'email' => '2@example.com',
]);
$team = Team::create([
'name' => "2@example.com",
'name' => '2@example.com',
'personal_team' => false,
'show_boarding' => true
'show_boarding' => true,
]);
$user->teams()->attach($team, ['role' => 'owner']);
$user = User::factory()->create([