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

25 lines
1.1 KiB
PHP
Raw Normal View History

2021-03-18 13:03:13 +03:00
<div id="widget-{{ $class->model->id }}" class="{{ $class->model->settings->width }}">
<div class="card">
@include($class->views['header'], ['header_class' => 'border-bottom-0'])
<div class="table-responsive">
<table class="table align-items-center table-flush">
<thead class="thead-light">
<tr class="row table-head-line">
<th class="col-xs-6 col-md-6 text-left">{{ trans('general.name') }}</th>
<th class="col-xs-6 col-md-6 text-right">{{ trans('currencies.rate') }}</th>
</tr>
</thead>
<tbody class="thead-light">
@foreach($currencies as $item)
<tr class="row border-top-1 tr-py">
<td class="col-xs-6 col-md-6 text-left long-texts">{{ $item->name }}</td>
<td class="col-xs-6 col-md-6 text-right">{{ $item->rate }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>