Akaunting/resources/views/components/show/summary/left.blade.php

12 lines
387 B
PHP
Raw Normal View History

2022-11-07 14:36:32 +00:00
<div class="w-full lg:w-5/12 flex items-center">
2022-06-01 07:15:55 +00:00
@if (! empty($avatar) && $avatar->isNotEmpty())
<div class="w-12 h-12 flex items-center justify-center text-2xl font-regular border border-gray-300 rounded-full p-6">
{!! $avatar !!}
</div>
@endif
2022-10-31 14:41:30 +00:00
<div class="flex flex-col text-black text-sm font-medium ml-2 sm:ml-8">
2022-06-01 07:15:55 +00:00
{!! $slot !!}
</div>
</div>