84 lines
3.2 KiB
PHP
84 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Element\CreateElementDto;
|
|
use App\Element\ElementRepository;
|
|
use App\Set\SetRepository;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class ElementSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$setRepository = app(SetRepository::class);
|
|
$elementRepository = app(ElementRepository::class);
|
|
$baderechSet = $setRepository->find(1);
|
|
$rootElement = $elementRepository->create(new CreateElementDto(
|
|
set: $baderechSet,
|
|
title: $baderechSet->getName(),
|
|
description: $baderechSet->getDescription(),
|
|
iconImageUrl: '/assets/baderech-haavodah-icon.png',
|
|
richText: '',
|
|
pdfPath: null,
|
|
youtubeUrl: null,
|
|
parentElement: null,
|
|
));
|
|
|
|
$baderechChildElements = [
|
|
[
|
|
'title' => 'Introduction',
|
|
'description' => 'Your beliefs influence your thinking, '
|
|
. 'and your thinking drives your choices. When you '
|
|
. 'nurture healthy beliefs - about yourself, about '
|
|
. 'the Creator, and about the meaning of life - you '
|
|
. 'unlock the ability to live with strength, confidence, '
|
|
. 'and hope.',
|
|
],
|
|
[
|
|
'title' => 'Foundations',
|
|
'description' => 'Focal points for thriving in a chaotic '
|
|
. 'world. In this fast, complex era, you flourish when '
|
|
. 'you develop clarity, well-being, resilience, and the '
|
|
. 'ability to uplift the physical world with spiritual '
|
|
. 'intention.',
|
|
],
|
|
[
|
|
'title' => 'Divine Plan',
|
|
'description' => 'Understanding the unique greatness of our '
|
|
. 'generation and the call to remain hopeful, '
|
|
. 'optimistic, and resilient.',
|
|
],
|
|
[
|
|
'title' => 'Architecture of the Soul',
|
|
'description' => "Becoming a Baal Da'at - A Master of "
|
|
. 'Inner Awareness',
|
|
],
|
|
[
|
|
'title' => 'Arba Yesodot',
|
|
'description' => 'A structured approach to balanced living: '
|
|
. 'Physical & Financial Health, Relationships, Wisdom '
|
|
. 'and Guidance.',
|
|
],
|
|
[
|
|
'title' => 'Fluid Integration',
|
|
'description' => 'A series of practical exercises to '
|
|
. 'engender a shift in mindset, embed healthy routines, '
|
|
. 'positive life practices.',
|
|
],
|
|
];
|
|
|
|
foreach ($baderechChildElements as $baderechChildElement) {
|
|
$elementRepository->create(new CreateElementDto(
|
|
set: $baderechSet,
|
|
title: $baderechChildElement['title'],
|
|
description: $baderechChildElement['description'],
|
|
iconImageUrl: null,
|
|
richText: '',
|
|
pdfPath: null,
|
|
youtubeUrl: null,
|
|
parentElement: $rootElement,
|
|
));
|
|
}
|
|
}
|
|
}
|