forked from metin2/web
Translated Account Information page, minor refactoring regarding IS currency names
This commit is contained in:
@ -37,13 +37,13 @@
|
||||
{{ $item->quantity }} pcs. for:
|
||||
|
||||
@if (!$item->old_price)
|
||||
<span class="price">{{ $item->price }} {{ $item->pricing->description() }}</span>
|
||||
<span class="price">{{ $item->price }} {{ $item->pricing->name() }}</span>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@if ($item->old_price)
|
||||
<div class="price discount price-discount-ie6">{{ $item->price }} {{ $item->pricing->description() }}</div>
|
||||
<div class="discountOldPriceCategory">{{ $item->old_price }} {{ $item->pricing ->description() }}</div>
|
||||
<div class="price discount price-discount-ie6">{{ $item->price }} {{ $item->pricing->name() }}</div>
|
||||
<div class="discountOldPriceCategory">{{ $item->old_price }} {{ $item->pricing ->name() }}</div>
|
||||
<div class="discountPercentCircleCategory"></div>
|
||||
@endif
|
||||
</div>
|
||||
|
@ -19,19 +19,19 @@
|
||||
<a href="{{ route('mall.item', ['id' => $item->id]) }}" class="openinformation" title="More information"></a>
|
||||
</div>
|
||||
<div class="discountPercentCirclePromoted"></div>
|
||||
<p class="discountOldPricePromoted">{{ $item->old_price }} {{ $item->pricing->description() }}</p>
|
||||
<p class="discountOldPricePromoted">{{ $item->old_price }} {{ $item->pricing->name() }}</p>
|
||||
@endif
|
||||
|
||||
<div @class(['promotedItemBtns', 'promotedItemBtns-discount' => $item->old_price])>
|
||||
@if ($item->old_price)
|
||||
<p class="pdiscount">
|
||||
{{ $item->quantity }} pcs: <span class="price discount price-discount-ie6">{{ $item->price }} {{ $item->pricing->description() }}</span>
|
||||
{{ $item->quantity }} pcs: <span class="price discount price-discount-ie6">{{ $item->price }} {{ $item->pricing->name() }}</span>
|
||||
</p>
|
||||
<div class="divdiscount">
|
||||
<a href="{{ route('mall.item', ['id' => $item->id]) }}" title="More information" class="detail-discount openinformation">Details</a>
|
||||
</div>
|
||||
@else
|
||||
<p>{{ $item->quantity }} pcs. only: <span class="price">{{ $item->price }} {{ $item->pricing->description() }}</span></p>
|
||||
<p>{{ $item->quantity }} pcs. only: <span class="price">{{ $item->price }} {{ $item->pricing->name() }}</span></p>
|
||||
<a href="{{ route('mall.item', ['id' => $item->id]) }}" title="More information" class="detail openinformation">Details</a>
|
||||
@endif
|
||||
</div>
|
||||
|
@ -44,13 +44,13 @@
|
||||
</div>
|
||||
<div class="sprice-discount">
|
||||
<div id="oldPriceAmountDiv">
|
||||
<span id="oldPriceAmount">{{ $item->old_price }}</span> {{ $item->pricing->description() }}
|
||||
<span id="oldPriceAmount">{{ $item->old_price }}</span> {{ $item->pricing->name() }}
|
||||
</div>
|
||||
Price: <span id="priceAmount">{{$item->price }}</span> {{ $item->pricing->description() }}
|
||||
Price: <span id="priceAmount">{{$item->price }}</span> {{ $item->pricing->name() }}
|
||||
</div>
|
||||
@else
|
||||
<div class="sprice">
|
||||
Price: <span id="priceAmount">{{ $item->price }}</span> {{ $item->pricing->description() }}
|
||||
Price: <span id="priceAmount">{{ $item->price }}</span> {{ $item->pricing->name() }}
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
@ -61,7 +61,7 @@
|
||||
<a id="linkBlank" class="blank" style="display:none" href="#">Buy item</a>
|
||||
@else
|
||||
<a id="buyItemLink" class="blank" href="#" style="cursor: default">Not
|
||||
enough {{ $item->pricing->description() }}</a>
|
||||
enough {{ $item->pricing->name() }}</a>
|
||||
@endif
|
||||
|
||||
@if ($item->pricing == \App\Models\Enums\MallItemPricingEnum::CASH)
|
||||
|
Reference in New Issue
Block a user