1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/resources/views/email/components/footer.blade.php

13 lines
391 B
PHP
Raw Normal View History

2020-10-27 16:04:28 +01:00
<div class="mt-8 text-center break-words">
<p class="block text-center text-sm break-words">{{ $slot }}</p>
@isset($url)
2020-10-27 16:04:28 +01:00
<a href="{{ $url }}" class="text-blue-500 hover:text-blue-600 mt-4 text-sm break-words">
@isset($url_text)
{!! $url_text !!}
@else
{{ $url }}
@endisset
</a>
@endisset
</div>