diff --git a/database/seeders/TenantSeeder.php b/database/seeders/TenantSeeder.php index 55e4ce6..f31bb21 100644 --- a/database/seeders/TenantSeeder.php +++ b/database/seeders/TenantSeeder.php @@ -45,23 +45,28 @@ class TenantSeeder extends Seeder $existingDomain->delete(); } - $imagePath = public_path('images/sonder.png'); + $headerImagePath = public_path('images/sonder_header.png'); + $footerImagePath = public_path('images/sonder_footer.png'); - if (! file_exists($imagePath)) { - throw new \RuntimeException("Image not found at path: {$imagePath}"); + if (! file_exists($headerImagePath)) { + throw new \RuntimeException("Image not found at path: {$headerImagePath}"); + } + + if (! file_exists($footerImagePath)) { + throw new \RuntimeException("Image not found at path: {$footerImagePath}"); } $headerLogo = new UploadedFile( - $imagePath, - 'sonder.png', + $headerImagePath, + 'sonder_header.png', 'image/png', null, true ); $footerLogo = new UploadedFile( - $imagePath, - 'sonder.png', + $footerImagePath, + 'sonder_footer.png', 'image/png', null, true diff --git a/public/images/sonder.png b/public/images/sonder_footer.png similarity index 100% rename from public/images/sonder.png rename to public/images/sonder_footer.png diff --git a/public/images/sonder_header.png b/public/images/sonder_header.png new file mode 100644 index 0000000..630d53a Binary files /dev/null and b/public/images/sonder_header.png differ