@forelse ($phase->taxes ?? [] as $tax) {{-- actions --}} @if(!$is_paid) @can('delete phase tax') {!! getIcon('trash','fs-3') !!} @endcan @can('update phase tax') {!! getIcon('pencil','fs-3') !!} @endcan @endif {{-- end actions --}} {{$tax->name}} ({{$tax->categoryName($tax->pivot->category)}}) pivot->manual_amount) data-bs-toggle="tooltip" title="Calculated amount: {{$tax->pivot->category == 2 ? '-' : ''}} {{cMoney(($tax->pivot->calculated_amount / 100), $phase->contract->currency, true)}}" @endif > {{$tax->pivot->category == 2 ? '-' : ''}}@cMoney(($tax->pivot->manual_amount ? $tax->pivot->manual_amount : $tax->pivot->calculated_amount) / 100, $phase->contract->currency, true) @if($tax->pivot->manual_amount) * @endif @empty @endforelse