📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 06:07:23
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
database
/
seeders
📍 /home/orkouolp/web/testing.orkobd/laravel/database/seeders
🔄 Refresh
✏️
Editing: IndustryTypeSeeder.php
Writable
<?php namespace Database\Seeders; use App\Models\IndustryType; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; class IndustryTypeSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { $industryTypes = [ 'Manufacturing', 'Technology', 'Healthcare', 'Financial Services', 'Energy', 'Retail', 'Telecommunications', 'Agriculture', 'Transportation and Logistics', 'Entertainment and Media', 'Construction', 'Automotive', 'Tourism and Hospitality', 'Education', 'Real Estate', 'Pharmaceutical', 'Consumer Goods', 'Environmental', 'Defense and Aerospace', 'Legal and Professional Services' ]; foreach($industryTypes as $type) { $industryType = new IndustryType(); $industryType->name = $type; $industryType->save(); } } }
💾 Save Changes
❌ Cancel