37 lines
No EOL
771 B
PHP
37 lines
No EOL
771 B
PHP
<div class="td-entry-table-margin">
|
|
{!! $entry->badge !!}
|
|
|
|
@if($entry->link)
|
|
<a href="{{ $entry->link }}">
|
|
@else
|
|
<span>
|
|
@endif
|
|
|
|
{!! $entry->name !!} /
|
|
|
|
@if($entry->reference)
|
|
{!! $entry->reference !!} /
|
|
@endif
|
|
|
|
@if($entry->total)
|
|
({!! $entry->total !!})
|
|
@endif
|
|
|
|
@if($entry->date)
|
|
{!! $entry->date !!} /
|
|
@endif
|
|
|
|
@if(isset($entry->price_formatted))
|
|
<strong>{!! $entry->price_formatted !!} €</strong>
|
|
@endif
|
|
|
|
@if($entry->link)
|
|
</a>
|
|
@else
|
|
</span>
|
|
@endif
|
|
|
|
@if(isset($entry->delete))
|
|
{!! $entry->delete !!}
|
|
@endif
|
|
</div> |