28 lines
1.8 KiB
PHP
28 lines
1.8 KiB
PHP
<?php
|
|
|
|
use Spatie\LaravelSettings\Migrations\SettingsMigration;
|
|
|
|
return new class extends SettingsMigration
|
|
{
|
|
public function up(): void
|
|
{
|
|
$this->migrator->add('sites.is_maintenance', false);
|
|
$this->migrator->add('sites.name', 'SuperDuper Filament Starter');
|
|
$this->migrator->add('sites.logo', 'sites/logo.png');
|
|
$this->migrator->add('sites.tagline', 'Elevate Your Development Experience');
|
|
$this->migrator->add('sites.description', 'Transform your workflow with SuperDuper Filament Starter — the toolkit for Filament 3 projects. Packed with enterprise-ready plugins, seamless configurations, and expert-crafted interfaces to accelerate your development from concept to production.');
|
|
$this->migrator->add('sites.default_language', 'en');
|
|
$this->migrator->add('sites.timezone', 'UTC');
|
|
$this->migrator->add('sites.copyright_text', '© '.date('Y').' SuperDuper Starter. All rights reserved.');
|
|
$this->migrator->add('sites.terms_url', '/terms');
|
|
$this->migrator->add('sites.privacy_url', '/privacy');
|
|
$this->migrator->add('sites.cookie_policy_url', '/cookie-policy');
|
|
$this->migrator->add('sites.custom_404_message', 'Oops! This page seems to have vanished into the digital ether. Let\'s get you back on track.');
|
|
$this->migrator->add('sites.custom_500_message', 'We\'ve encountered an unexpected glitch. Our team has been notified and is working to restore service.');
|
|
$this->migrator->add('sites.company_name', 'SuperDuper Starter');
|
|
$this->migrator->add('sites.company_email', 'hello@superduperstarter.com');
|
|
$this->migrator->add('sites.company_phone', '+1 (800) 123-4567');
|
|
$this->migrator->add('sites.company_address', 'Innovation Tower, 101 Tech Boulevard, Digital City, 10101');
|
|
}
|
|
};
|