ultimatepos/Modules/ManagementTools/Resources/views/executive_cockpit/partials/action_row.blade.php

28 lines
994 B
PHP

@php
$value = $item['value'] ?? ($item['amount'] ?? null);
$isCurrency = ! empty($item['currency']);
@endphp
<div class="mt-drill-top-list__row">
<div class="mt-drill-top-list__main">
@if(!empty($item['url']))
<a href="{{ $item['url'] }}" target="_blank">{{ $item['label'] }}</a>
@else
<span>{{ $item['label'] }}</span>
@endif
@if($value !== null)
@if($isCurrency)
<strong class="display_currency" data-currency_symbol="true">{{ $value }}</strong>
@else
<strong>{{ $value }}</strong>
@endif
@endif
</div>
@if(!empty($item['actions']) && is_array($item['actions']))
<div class="mt-drill-top-list__actions">
@foreach($item['actions'] as $action)
<a href="{{ $action['url'] }}" target="_blank" class="btn btn-default btn-xs">{{ $action['label'] }}</a>
@endforeach
</div>
@endif
</div>