update demo seed data

This commit is contained in:
Yisroel Baum 2026-05-27 21:39:40 +03:00
parent d1efea2bd5
commit bb80d624c3
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -19,36 +19,66 @@ class ElementSeeder extends Seeder
title: $baderechSet->getName(), title: $baderechSet->getName(),
description: $baderechSet->getDescription(), description: $baderechSet->getDescription(),
iconImageUrl: '/assets/baderech-haavodah-icon.png', iconImageUrl: '/assets/baderech-haavodah-icon.png',
richText: '<p>Begin with a clear map for avodah growth.</p>' richText: '',
. '<p><strong>Move steadily</strong> from awareness '
. 'to practice.</p>',
pdfPath: '/assets/pdfs/baderech.pdf', pdfPath: '/assets/pdfs/baderech.pdf',
youtubeUrl: 'https://www.youtube.com/watch?v=' youtubeUrl: null,
. 'yHx-r4p6hHU&t=1s',
parentElement: null, parentElement: null,
)); ));
$elementRepository->create(new CreateElementDto(
set: $baderechSet, $baderechChildElements = [
title: 'Avodah Foundations', [
description: 'Core foundations for building a steady ' 'title' => 'Introduction',
. 'avodah practice.', 'description' => 'Your beliefs influence your thinking, '
iconImageUrl: null, . 'and your thinking drives your choices. When you '
richText: '<p>Avodah foundations begin with honest awareness ' . 'nurture healthy beliefs - about yourself, about '
. 'and small repeatable steps.</p>', . 'the Creator, and about the meaning of life - you '
pdfPath: null, . 'unlock the ability to live with strength, confidence, '
youtubeUrl: null, . 'and hope.',
parentElement: $rootElement, ],
)); [
$elementRepository->create(new CreateElementDto( 'title' => 'Foundations',
set: $baderechSet, 'description' => 'Focal points for thriving in a chaotic '
title: 'Daily Practice', . 'world. In this fast, complex era, you flourish when '
description: 'Practical steps for consistent daily growth.', . 'you develop clarity, well-being, resilience, and the '
iconImageUrl: null, . 'ability to uplift the physical world with spiritual '
richText: '<p>Daily practice turns inspiration into a ' . 'intention.',
. 'dependable rhythm.</p>', ],
pdfPath: null, [
youtubeUrl: null, 'title' => 'Divine Plan',
parentElement: $rootElement, '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,
));
}
} }
} }