diff --git a/app/Services/PdfMaker/Designs/Bold.php b/app/Services/PdfMaker/Designs/Bold.php index 903f6a921d64..64b2dec6076a 100644 --- a/app/Services/PdfMaker/Designs/Bold.php +++ b/app/Services/PdfMaker/Designs/Bold.php @@ -17,7 +17,7 @@ class Bold public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/bold.html') + base_path('resources/views/pdf-designs//bold.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Business.php b/app/Services/PdfMaker/Designs/Business.php index 9b6c5f8ff713..b6c368f5ac2d 100644 --- a/app/Services/PdfMaker/Designs/Business.php +++ b/app/Services/PdfMaker/Designs/Business.php @@ -17,7 +17,7 @@ class Business public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/business.html') + base_path('resources/views/pdf-designs//business.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Clean.php b/app/Services/PdfMaker/Designs/Clean.php index 0675b46c55df..eb621e0ca7fd 100644 --- a/app/Services/PdfMaker/Designs/Clean.php +++ b/app/Services/PdfMaker/Designs/Clean.php @@ -17,7 +17,7 @@ class Clean public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/clean.html') + base_path('resources/views/pdf-designs//clean.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Creative.php b/app/Services/PdfMaker/Designs/Creative.php index 24ac6d5d7766..20275744b424 100644 --- a/app/Services/PdfMaker/Designs/Creative.php +++ b/app/Services/PdfMaker/Designs/Creative.php @@ -17,7 +17,7 @@ class Creative public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/creative.html') + base_path('resources/views/pdf-designs//creative.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Elegant.php b/app/Services/PdfMaker/Designs/Elegant.php index 17635ef8eb6a..947ffc9ba0b8 100644 --- a/app/Services/PdfMaker/Designs/Elegant.php +++ b/app/Services/PdfMaker/Designs/Elegant.php @@ -17,7 +17,7 @@ class Elegant public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/elegant.html') + base_path('resources/views/pdf-designs//elegant.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Hipster.php b/app/Services/PdfMaker/Designs/Hipster.php index ddf308ca0d93..d4ff9b42ecd0 100644 --- a/app/Services/PdfMaker/Designs/Hipster.php +++ b/app/Services/PdfMaker/Designs/Hipster.php @@ -17,7 +17,7 @@ class Hipster public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/hipster.html') + base_path('resources/views/pdf-designs//hipster.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Modern.php b/app/Services/PdfMaker/Designs/Modern.php index 650485311270..8c4dfec47dc2 100644 --- a/app/Services/PdfMaker/Designs/Modern.php +++ b/app/Services/PdfMaker/Designs/Modern.php @@ -17,7 +17,7 @@ class Modern public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/modern.html') + base_path('resources/views/pdf-designs//modern.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Plain.php b/app/Services/PdfMaker/Designs/Plain.php index b60a0df8bea5..36b6ea628262 100644 --- a/app/Services/PdfMaker/Designs/Plain.php +++ b/app/Services/PdfMaker/Designs/Plain.php @@ -17,7 +17,7 @@ class Plain public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/plain.html') + base_path('resources/views/pdf-designs//plain.html') ); } } diff --git a/app/Services/PdfMaker/Designs/Playful.php b/app/Services/PdfMaker/Designs/Playful.php index 219b930e8c2e..693d32516b5f 100644 --- a/app/Services/PdfMaker/Designs/Playful.php +++ b/app/Services/PdfMaker/Designs/Playful.php @@ -17,7 +17,7 @@ class Playful public function html() { return file_get_contents( - base_path('app/Services/PdfMaker/Designs/html/playful.html') + base_path('resources/views/pdf-designs//playful.html') ); } } diff --git a/app/Services/PdfMaker/Designs/html/bold.html b/resources/views/pdf-designs/bold.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/bold.html rename to resources/views/pdf-designs/bold.html diff --git a/app/Services/PdfMaker/Designs/html/business.html b/resources/views/pdf-designs/business.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/business.html rename to resources/views/pdf-designs/business.html diff --git a/app/Services/PdfMaker/Designs/html/clean.html b/resources/views/pdf-designs/clean.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/clean.html rename to resources/views/pdf-designs/clean.html diff --git a/app/Services/PdfMaker/Designs/html/creative.html b/resources/views/pdf-designs/creative.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/creative.html rename to resources/views/pdf-designs/creative.html diff --git a/app/Services/PdfMaker/Designs/html/elegant.html b/resources/views/pdf-designs/elegant.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/elegant.html rename to resources/views/pdf-designs/elegant.html diff --git a/app/Services/PdfMaker/Designs/html/hipster.html b/resources/views/pdf-designs/hipster.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/hipster.html rename to resources/views/pdf-designs/hipster.html diff --git a/app/Services/PdfMaker/Designs/html/modern.html b/resources/views/pdf-designs/modern.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/modern.html rename to resources/views/pdf-designs/modern.html diff --git a/app/Services/PdfMaker/Designs/html/plain.html b/resources/views/pdf-designs/plain.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/plain.html rename to resources/views/pdf-designs/plain.html diff --git a/app/Services/PdfMaker/Designs/html/playful.html b/resources/views/pdf-designs/playful.html similarity index 100% rename from app/Services/PdfMaker/Designs/html/playful.html rename to resources/views/pdf-designs/playful.html