1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Update static html design paths

This commit is contained in:
Benjamin Beganović 2020-07-22 14:43:07 +02:00
parent cb055e85d0
commit 3b2e4c68e9
18 changed files with 9 additions and 9 deletions

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}

View File

@ -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')
);
}
}