🚀 Hostinger Optimized
🖥️ Server: LiteSpeed
💻 System: Linux s20058.bom1.stableserver.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
👤 User: skhata (1324)
🐘 PHP: 8.4.20
🚫 Disabled: ✨ NONE

💻 Terminal

📁 /home/skhata/chandrasons.com/public
$

📄 BlogPostSeeder.php

📁 Path: /home/skhata/chandrasons.com/database/seeders/BlogPostSeeder.php
📊 Size: 7.35 KB
🔒 Perm: 0644
📝 MIME: text/x-php
<?php

namespace Database\Seeders;

use App\Models\BlogPost;
use Illuminate\Database\Seeder;
use Illuminate\Support\Str;

class BlogPostSeeder extends Seeder
{
    public function run(): void
    {
        $posts = [
            [
                'title'        => 'Why Sunauli Border is the Gateway for Medicine Export to Nepal',
                'slug'         => 'sunauli-border-medicine-export-nepal',
                'author'       => 'Chandra & Sons Team',
                'category'     => 'Export',
                'tags'         => ['nepal', 'export', 'sunauli', 'border'],
                'excerpt'      => 'Located at the India-Nepal border crossing, Sunauli (Sonauli) is the most active pharmaceutical trade route between the two countries. Learn why businesses choose Chandra & Sons for cross-border medicine supply.',
                'content'      => '<h2>India-Nepal Pharmaceutical Trade at Sunauli</h2><p>The Sunauli-Bhairahawa border crossing in Maharajganj, Uttar Pradesh is one of the busiest land trade routes between India and Nepal. For pharmaceutical distributors, this border represents a critical gateway for the export of medicines, surgical supplies, and healthcare products to Nepal.</p><h2>Why Businesses Choose Sunauli for Medicine Export</h2><p>Chandra &amp; Sons Pharma Distributors, established at the Tampu Stand near the Sonauli Border, has been facilitating seamless cross-border pharmaceutical trade for over a decade. Our strategic location, combined with our vast inventory of 1000+ products from 150+ brand partners, makes us the preferred supplier for Nepali businesses.</p><h2>Our Export Process</h2><p>We offer a streamlined pre-order system for Nepal export buyers. Once your order is placed and confirmed, we coordinate all necessary documentation and ensure timely dispatch. Our team is familiar with the customs requirements and trade regulations at the border, making the process smooth for our Nepali partners.</p><h2>Products Available for Nepal Export</h2><ul><li>Branded and generic medicines from top Indian manufacturers</li><li>Surgical and medical supplies</li><li>OTC wellness products</li><li>Hospital and pharmacy consumables</li></ul><p>Contact us today to discuss your requirements and get a quote.</p>',
                'meta_title'   => 'Medicine Export to Nepal via Sunauli Border | Chandra & Sons',
                'meta_description' => 'Chandra & Sons at Sunauli border facilitates seamless pharmaceutical export to Nepal. 1000+ medicines, 150+ brands, streamlined cross-border supply.',
                'status'       => 'published',
                'published_at' => now()->subDays(10),
            ],
            [
                'title'        => 'Top 5 Benefits of Buying Generic Medicines for Your Pharmacy',
                'slug'         => 'benefits-generic-medicines-pharmacy',
                'author'       => 'Chandra & Sons Team',
                'category'     => 'Medicine',
                'tags'         => ['generic', 'pharmacy', 'wholesale', 'savings'],
                'excerpt'      => 'Generic medicines offer the same therapeutic benefits as branded drugs at a fraction of the cost. Discover how stocking generics can improve your pharmacy\'s profitability and patient reach.',
                'content'      => '<h2>What Are Generic Medicines?</h2><p>Generic medicines contain the same active ingredients, dosage, and route of administration as their branded counterparts. They are bioequivalent — meaning they work exactly the same way in the body — but are available at significantly lower prices.</p><h2>5 Key Benefits for Pharmacies</h2><ol><li><strong>Higher Profit Margins:</strong> Generic medicines typically offer better margins for pharmacy owners compared to branded alternatives.</li><li><strong>Increased Patient Affordability:</strong> Lower-priced generics make treatment accessible to more patients, increasing your customer base.</li><li><strong>Government Support:</strong> The Indian government actively promotes generic medicine use through Jan Aushadhi schemes and prescription guidelines.</li><li><strong>Wide Availability:</strong> Our stock includes generics across all major therapeutic categories — from antibiotics to cardiovascular drugs.</li><li><strong>Same Quality Standards:</strong> All generic medicines we stock are manufactured by licensed facilities approved by CDSCO.</li></ol><h2>Our Generic Medicine Range</h2><p>At Chandra &amp; Sons, we stock a comprehensive range of generic medicines from reputed manufacturers. Contact us to discuss your pharmacy\'s requirements and get competitive wholesale pricing.</p>',
                'meta_title'   => 'Benefits of Generic Medicines for Pharmacies | Chandra & Sons',
                'meta_description' => 'Learn how generic medicines can boost your pharmacy profits and patient reach. Wholesale generic supply from Chandra & Sons, Maharajganj.',
                'status'       => 'published',
                'published_at' => now()->subDays(5),
            ],
            [
                'title'        => 'Understanding Wholesale vs Retail Medicine Buying: A Guide for Buyers',
                'slug'         => 'wholesale-vs-retail-medicine-buying-guide',
                'author'       => 'Chandra & Sons Team',
                'category'     => 'Wholesale',
                'tags'         => ['wholesale', 'retail', 'buyer', 'guide'],
                'excerpt'      => 'Whether you\'re a small pharmacy or a large hospital, understanding the difference between wholesale and retail buying can save you thousands. This guide explains when and how to buy wholesale medicines.',
                'content'      => '<h2>Wholesale vs Retail: What\'s the Difference?</h2><p>When it comes to pharmaceutical procurement, the distinction between wholesale and retail buying matters significantly for your business economics. Wholesale buying involves purchasing medicines in bulk quantities directly from a distributor, while retail buying involves smaller, as-needed purchases.</p><h2>When Should You Buy Wholesale?</h2><p>Wholesale buying makes sense when:</p><ul><li>You run a pharmacy with steady, predictable demand for specific medicines</li><li>You operate a hospital or clinic with regular medicine requirements</li><li>You are a business looking to resell medicines (with appropriate licenses)</li><li>You are a Nepal export buyer placing pre-orders for cross-border supply</li></ul><h2>Benefits of Wholesale Buying from Chandra & Sons</h2><p>Our wholesale program offers significant price advantages over retail. With a minimum order quantity, you unlock tiered pricing that can reduce your per-unit cost substantially. We also offer flexible payment terms for established wholesale buyers.</p><h2>Getting Started</h2><p>Contact our team via WhatsApp or our enquiry form to discuss your requirements. We\'ll assess your needs and recommend the most cost-effective buying approach for your business.</p>',
                'meta_title'   => 'Wholesale vs Retail Medicine Buying Guide | Chandra & Sons',
                'meta_description' => 'A complete guide to wholesale medicine buying for pharmacies, hospitals and export buyers. Contact Chandra & Sons for bulk pharmaceutical supply.',
                'status'       => 'published',
                'published_at' => now()->subDays(2),
            ],
        ];

        foreach ($posts as $post) {
            BlogPost::updateOrCreate(['slug' => $post['slug']], $post);
        }
    }
}
← Back📥 Raw✏️ Edit🔒 Chmod
✨ File Manager Magic ✨