update
This commit is contained in:
@@ -24,7 +24,8 @@
|
||||
font-size: 20px;
|
||||
margin: 0; /* Reset default margin */
|
||||
padding: 0; /* Reset default padding */
|
||||
background-image: url("{{public_path('images/ecard-background.png')}}");
|
||||
background-image: url("{{ 'data:image/png;base64,' . base64_encode(file_get_contents(public_path('images/ecard-background.png'))) }}");
|
||||
/* background-image: url("{{public_path('images/ecard-background.png')}}"); */
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover; /* Adjust as needed */
|
||||
}
|
||||
@@ -80,7 +81,11 @@
|
||||
<br><br>
|
||||
@if($member->currentCorporate->files && count($member->currentCorporate->files) > 0)
|
||||
<div>
|
||||
<img src="{{ public_path('images/logo-default.png') }}" height="30px">
|
||||
@php
|
||||
$imgSrc = 'data:image/png;base64,' . base64_encode(file_get_contents(public_path('images/logo-default.png')));
|
||||
echo '<img src="' . $imgSrc . '" height="30px">';
|
||||
@endphp
|
||||
<!-- <img src="{{ public_path('images/logo-default.png') }}" height="30px"> -->
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@@ -108,7 +113,11 @@
|
||||
<p class="text-lg"><b>{{ $member->startDate }}</b></p>
|
||||
|
||||
<div class="image-container" style="margin-left:70%">
|
||||
<img src="{{ public_path('images/logo-default.png')}}" height="30px">
|
||||
@php
|
||||
$imgSrc = 'data:image/png;base64,' . base64_encode(file_get_contents(public_path('images/logo-default.png')));
|
||||
echo '<img src="' . $imgSrc . '" height="30px">';
|
||||
@endphp
|
||||
<!-- <img src="{{ public_path('images/logo-default.png')}}" height="30px"> -->
|
||||
</div>
|
||||
<span class="label">
|
||||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
@@ -26,7 +26,8 @@
|
||||
font-size: 20px;
|
||||
margin: 0; /* Reset default margin */
|
||||
padding: 0; /* Reset default padding */
|
||||
background-image: url("{{public_path('images/background-vale.png')}}");
|
||||
background-image: url("{{ 'data:image/png;base64,' . base64_encode(file_get_contents(public_path('images/background-vale.png'))) }}");
|
||||
/* background-image: url("{{public_path('images/background-vale.png')}}"); */
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
/* Adjust as needed */
|
||||
@@ -113,7 +114,11 @@
|
||||
<p class="text-lg"><b>{{ $member->startDate }}</b></p>
|
||||
|
||||
<div class="image-container">
|
||||
<img src="{{ public_path('images/logo-default.png') }}" height="30px">
|
||||
@php
|
||||
$imgSrc = 'data:image/png;base64,' . base64_encode(file_get_contents(public_path('images/logo-default.png')));
|
||||
echo '<img src="' . $imgSrc . '" height="30px">';
|
||||
@endphp
|
||||
<!-- <img src="{{ public_path('images/logo-default.png') }}" height="30px"> -->
|
||||
</div>
|
||||
<span class="label">
|
||||
<svg width="12" height="12" viewBox="0 0 12 12" fill="none"
|
||||
|
||||
Reference in New Issue
Block a user