diff --git a/app/Services/PdfMaker/Designs/Bold.php b/app/Services/PdfMaker/Designs/Bold.php index 903f6a921d..64b2dec607 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 9b6c5f8ff7..b6c368f5ac 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 0675b46c55..eb621e0ca7 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 24ac6d5d77..20275744b4 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 17635ef8eb..947ffc9ba0 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 ddf308ca0d..d4ff9b42ec 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 6504853112..8c4dfec47d 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 b60a0df8be..36b6ea6282 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 219b930e8c..693d32516b 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