Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ilestis authored and github-actions[bot] committed Jan 16, 2024
1 parent 6a53ffd commit 5179575
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions database/seeders/GameSystemSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Database\Seeders;

use App\Models\GameSystem;
use App\Models\Genre;
use Illuminate\Database\Seeder;

class GameSystemSeeder extends Seeder
Expand All @@ -14,7 +13,7 @@ class GameSystemSeeder extends Seeder
public function run(): void
{
$genres = [
'D&D', 'D&D 5e', 'D&D 3.5', 'D&D 3', 'D&D 4', 'AD&D 2'.
'D&D', 'D&D 5e', 'D&D 3.5', 'D&D 3', 'D&D 4', 'AD&D 2' .
'Pathfinder', 'Pathfinder 2e',
'Savage Worlds',
'Chronicles of Darkness',
Expand Down Expand Up @@ -69,7 +68,7 @@ public function run(): void
'Delta Green',
'Earthdawn',
'Masks',
];
];
foreach ($genres as $name) {
$genre = GameSystem::firstOrNew([
'name' => $name,
Expand Down

0 comments on commit 5179575

Please sign in to comment.