// Mobile app channel
$mobileChannel = Channel::query()->create([
'name' => 'Mobile App',
'slug' => 'mobile-app',
'description' => 'iOS and Android mobile application',
'timezone' => 'UTC',
'is_enabled' => true,
]);
// Marketplace channel
$marketplaceChannel = Channel::query()->create([
'name' => 'Amazon',
'slug' => 'amazon',
'description' => 'Amazon marketplace integration',
'url' => 'https://amazon.com/store/your-store',
'is_enabled' => true,
'metadata' => [
'marketplace_id' => 'ATVPDKIKX0DER',
'seller_id' => 'A1234567890',
],
]);