akaunting/resources/views/widgets/account_balance.blade.php

16 lines
486 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<div id="widget-{{ $class->model->id }}" class="{{ $class->model->settings->width }} my-8">
@include($class->views['header'], ['header_class' => ''])
2019-11-16 10:21:14 +03:00
2022-06-01 10:15:55 +03:00
<ul class="text-sm space-y-3 my-3">
@foreach($accounts as $item)
<li class="flex justify-between">
2022-07-07 14:48:45 +03:00
{{ $item->name }}
2022-06-23 15:30:41 +03:00
<span class="font-medium">
{{ $item->balance_formatted }}
</span>
2022-06-01 10:15:55 +03:00
</li>
@endforeach
</ul>
2019-11-16 10:21:14 +03:00
</div>