|
= $operation['date'];?>
|
= \S::number_display( $operation['amount'] );?>
|
= $operation['description'];?>
|
$tags_value = '';
foreach ( $operation['tags'] as $tag )
{
$tags_value .= $tag['tag'];
if ( $tag != end( $operation['tags'] ) )
$tags_value .= ', ';
};
echo $tags_value;
?>
|
$total = $total + $operation['amount'];?>
endforeach; endif;?>