namespace Database\Seeders; use App\Models\CompanyProfile; use App\Models\Product; use App\Models\Distributor; use Illuminate\Database\Seeder; class InitialDataSeeder extends Seeder { public function run(): void { CompanyProfile::create([ 'company_name' => 'MYC Sabun Udhyog', 'business_type' => 'Industrial Manufacturing', 'category' => 'Cleaning Products', 'specialization' => 'Premium Laundry Soaps', 'overview' => 'MYC Sabun Udhyog is a leading manufacturer of high-quality laundry soaps in Nepal, dedicated to providing effective and hygienic cleaning solutions for every household.', 'vision' => 'To be the most trusted name in hygiene and cleanliness across every household in Nepal.', 'mission' => 'To manufacture and deliver pure, high-performance laundry soaps using sustainable processes and supporting local communities.', 'address' => 'Industrial area, Biratnagar, Nepal', 'phone' => '+977-9800000000', 'email' => 'info@mycsabun.com', 'facebook_url' => 'https://facebook.com/mycsabun', 'rating' => 4.8, 'review_count' => 120, ]); $products = [ [ 'name' => 'MYC Gold Premium Bar', 'description' => 'Our flagship premium laundry soap balanced for tough stains and skin safety.', 'usage_type' => 'household', 'weight' => '250g', 'price' => 45.00, 'sku' => 'MYC-G-250', ], [ 'name' => 'MYC Industrial Clean', 'description' => 'Heavy-duty laundry soap designed for commercial laundries and factory workers.', 'usage_type' => 'commercial', 'weight' => '500g', 'price' => 85.00, 'sku' => 'MYC-I-500', ], [ 'name' => 'MYC White Sparkle', 'description' => 'Specialized formula for maintaining the brightness of white clothes.', 'usage_type' => 'household', 'weight' => '200g', 'price' => 38.00, 'sku' => 'MYC-W-200', ], ]; foreach ($products as $p) { Product::create($p); } Distributor::create([ 'name' => 'Koshi Traders', 'contact_person' => 'Ram Bahadur', 'phone' => '+977-9811111111', 'email' => 'koshi@example.com', 'address' => 'Main Chowk, Biratnagar', 'region' => 'Koshi Province', ]); Distributor::create([ 'name' => 'Kathmandu Cleaning Supplies', 'contact_person' => 'Sita Devi', 'phone' => '+977-9822222222', 'email' => 'ktmclean@example.com', 'address' => 'New Road, Kathmandu', 'region' => 'Bagmati Province', ]); } }