seed introduction pdf

This commit is contained in:
Yisroel Baum 2026-05-27 21:51:18 +03:00
parent c1f6437769
commit f979630bde
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

View file

@ -35,6 +35,7 @@ class ElementSeeder extends Seeder
. 'unlock the ability to live with strength, confidence, ' . 'unlock the ability to live with strength, confidence, '
. 'and hope.', . 'and hope.',
'richText' => $this->introductionRichText(), 'richText' => $this->introductionRichText(),
'pdfPath' => '/assets/pdfs/baderech.pdf',
], ],
[ [
'title' => '2. Foundations', 'title' => '2. Foundations',
@ -44,6 +45,7 @@ class ElementSeeder extends Seeder
. 'ability to uplift the physical world with spiritual ' . 'ability to uplift the physical world with spiritual '
. 'intention.', . 'intention.',
'richText' => '', 'richText' => '',
'pdfPath' => null,
], ],
[ [
'title' => '3. Divine Plan', 'title' => '3. Divine Plan',
@ -51,12 +53,14 @@ class ElementSeeder extends Seeder
. 'generation and the call to remain hopeful, ' . 'generation and the call to remain hopeful, '
. 'optimistic, and resilient.', . 'optimistic, and resilient.',
'richText' => '', 'richText' => '',
'pdfPath' => null,
], ],
[ [
'title' => '4. Architecture of the Soul', 'title' => '4. Architecture of the Soul',
'description' => "Becoming a Baal Da'at - A Master of " 'description' => "Becoming a Baal Da'at - A Master of "
. 'Inner Awareness', . 'Inner Awareness',
'richText' => '', 'richText' => '',
'pdfPath' => null,
], ],
[ [
'title' => '5. Arba Yesodot', 'title' => '5. Arba Yesodot',
@ -64,6 +68,7 @@ class ElementSeeder extends Seeder
. 'Physical & Financial Health, Relationships, Wisdom ' . 'Physical & Financial Health, Relationships, Wisdom '
. 'and Guidance.', . 'and Guidance.',
'richText' => '', 'richText' => '',
'pdfPath' => null,
], ],
[ [
'title' => '6. Fluid Integration', 'title' => '6. Fluid Integration',
@ -71,6 +76,7 @@ class ElementSeeder extends Seeder
. 'engender a shift in mindset, embed healthy routines, ' . 'engender a shift in mindset, embed healthy routines, '
. 'positive life practices.', . 'positive life practices.',
'richText' => '', 'richText' => '',
'pdfPath' => null,
], ],
]; ];
@ -81,7 +87,7 @@ class ElementSeeder extends Seeder
description: $baderechChildElement['description'], description: $baderechChildElement['description'],
iconImageUrl: null, iconImageUrl: null,
richText: $baderechChildElement['richText'], richText: $baderechChildElement['richText'],
pdfPath: null, pdfPath: $baderechChildElement['pdfPath'],
youtubeUrl: null, youtubeUrl: null,
parentElement: $rootElement, parentElement: $rootElement,
)); ));