From f979630bdeb74e7e9978bf648d681a38723eea88 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Wed, 27 May 2026 21:51:18 +0300 Subject: [PATCH] seed introduction pdf --- backend/database/seeders/ElementSeeder.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/backend/database/seeders/ElementSeeder.php b/backend/database/seeders/ElementSeeder.php index bc86b55..538e47e 100644 --- a/backend/database/seeders/ElementSeeder.php +++ b/backend/database/seeders/ElementSeeder.php @@ -35,6 +35,7 @@ class ElementSeeder extends Seeder . 'unlock the ability to live with strength, confidence, ' . 'and hope.', 'richText' => $this->introductionRichText(), + 'pdfPath' => '/assets/pdfs/baderech.pdf', ], [ 'title' => '2. Foundations', @@ -44,6 +45,7 @@ class ElementSeeder extends Seeder . 'ability to uplift the physical world with spiritual ' . 'intention.', 'richText' => '', + 'pdfPath' => null, ], [ 'title' => '3. Divine Plan', @@ -51,12 +53,14 @@ class ElementSeeder extends Seeder . 'generation and the call to remain hopeful, ' . 'optimistic, and resilient.', 'richText' => '', + 'pdfPath' => null, ], [ 'title' => '4. Architecture of the Soul', 'description' => "Becoming a Baal Da'at - A Master of " . 'Inner Awareness', 'richText' => '', + 'pdfPath' => null, ], [ 'title' => '5. Arba Yesodot', @@ -64,6 +68,7 @@ class ElementSeeder extends Seeder . 'Physical & Financial Health, Relationships, Wisdom ' . 'and Guidance.', 'richText' => '', + 'pdfPath' => null, ], [ 'title' => '6. Fluid Integration', @@ -71,6 +76,7 @@ class ElementSeeder extends Seeder . 'engender a shift in mindset, embed healthy routines, ' . 'positive life practices.', 'richText' => '', + 'pdfPath' => null, ], ]; @@ -81,7 +87,7 @@ class ElementSeeder extends Seeder description: $baderechChildElement['description'], iconImageUrl: null, richText: $baderechChildElement['richText'], - pdfPath: null, + pdfPath: $baderechChildElement['pdfPath'], youtubeUrl: null, parentElement: $rootElement, ));