212 lines
5.8 KiB
PHP
212 lines
5.8 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Horoscopes;
|
|
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class HoroscopeSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
Horoscopes::create([
|
|
'horoscope_id' => 1,
|
|
'title'=> 'Aquarius',
|
|
'title_nepali'=> 'कुम्भ राशि',
|
|
'alias' => 'aquarius',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>1,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 2,
|
|
'title'=> 'Aries',
|
|
'title_nepali'=> 'मेष राशि',
|
|
'alias' => 'aries',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>2,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 3,
|
|
'title'=> 'Cancer',
|
|
'title_nepali'=> 'कर्कट राशि',
|
|
'alias' => 'cancer',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>3,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 4,
|
|
'title'=> 'Capricon',
|
|
'title_nepali'=> 'मकर राशि',
|
|
'alias' => 'capricon',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>4,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 5,
|
|
'title'=> 'Gemini',
|
|
'title_nepali'=> 'मिथुन राशि',
|
|
'alias' => 'gemini',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>5,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 6,
|
|
'title'=> 'Leo',
|
|
'title_nepali'=> 'सिंह राशि',
|
|
'alias' => 'leo',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>6,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 7,
|
|
'title'=> 'Libra',
|
|
'title_nepali'=> 'तुला राशि',
|
|
'alias' => 'libra',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>7,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 8,
|
|
'title'=> 'Pisces',
|
|
'title_nepali'=> 'मीन राशि',
|
|
'alias' => 'pisces',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>8,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 9,
|
|
'title'=> 'Sagittarius',
|
|
'title_nepali'=> 'धनु राशि',
|
|
'alias' => 'sagittarius',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>9,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 10,
|
|
'title'=> 'Scorpio',
|
|
'title_nepali'=> 'वृश्चिक राशि',
|
|
'alias' => 'scorpio',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>10,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 11,
|
|
'title'=> 'Taurus',
|
|
'title_nepali'=> 'वृष राशि',
|
|
'alias' => 'taurus',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>11,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
|
|
|
|
Horoscopes::create([
|
|
'horoscope_id' => 12,
|
|
'title'=> 'Virgo',
|
|
'title_nepali'=> 'कन्या राशि',
|
|
'alias' => 'virgo',
|
|
'image'=> '',
|
|
'thumb'=> '',
|
|
'description' => '',
|
|
'status' => 1,
|
|
'display_order'=>12,
|
|
'createdBy' => 1,
|
|
'updatedBy' =>1,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]);
|
|
}
|
|
}
|