Merge pull request #11173 from turbo124/v5-develop

v5.12.12
This commit is contained in:
David Bomba 2025-08-11 07:26:17 +10:00 committed by GitHub
commit 36c92fdd35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 8 deletions

View File

@ -1 +1 @@
5.12.11
5.12.12

View File

@ -17,8 +17,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.12.11'),
'app_tag' => env('APP_TAG', '5.12.11'),
'app_version' => env('APP_VERSION', '5.12.12'),
'app_tag' => env('APP_TAG', '5.12.12'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),

View File

@ -33,14 +33,14 @@ span {
<div class="px-3 border-fuchsia-600 border-b-2 pb-3">
<div id="company-details" class="mx-auto">
{!! $company_details !!}
{!! App\Services\Pdf\Purify::clean($company_details) !!}
</div>
</div>
<div class="border-fuchsia-600 border-b-2 pb-3 mt-3">
<div id="entity-details"> {!! $entity_details !!} </div>
<div id="entity-details"> {!! App\Services\Pdf\Purify::clean($entity_details) !!} </div>
</div>
@ -54,7 +54,7 @@ span {
</button>
<div id="terms" class="py-3" x-show="show_user">
{!! $user_details !!}
{!! App\Services\Pdf\Purify::clean($user_details) !!}
</div>
@ -78,7 +78,7 @@ span {
<div class="product-information">
<div class="item-details">
<p class="overflow-ellipsis overflow-hidden px-1 mb-2">{!! $product['notes'] !!}</p>
<p class="overflow-ellipsis overflow-hidden px-1 mb-2">{!! App\Services\Pdf\Purify::clean($product['notes']) !!}</p>
<p class="mt-2">
@if($show_quantity)
{{ $product['quantity'] }} x
@ -120,7 +120,7 @@ span {
<div class="">
<div class="">
<p class="mt-2">{{ $service['quantity'] }} × {{ $service['cost'] }}</p>
<p class="overflow-ellipsis overflow-hidden px-1 mb-2">{!! $service['notes'] !!}</p>
<p class="overflow-ellipsis overflow-hidden px-1 mb-2">{!! App\Services\Pdf\Purify::clean($service['notes']) !!}</p>
</div>
</div>
</td>