@extends('theme::layouts.app-sro', ['alias' => 'AuctionHouse']) @section('theme::title', __('reddington.seo.auctionshouse.showitem', ['name' => $item->item_name])) @section('theme::content')
@if (session()->has('success')) @endif @if ($errors->any() || session()->has('error')) @endif
@if ($item->bids > 0)
{{ __('auctionshouse.showitem.current_bids', [ 'amount' => $item->bids, ]) }}
@endif @if ($item->current_bid_user_id === $user->id)
{{ __('auctionshouse.showitem.highest-user') }}
@endif
Item Info:
@isset($item->tooltip) {!! $item->tooltip !!} @endisset
{{ $item->item_name }}
Time Left:
Current Bid: {{ number_format($item->price, 0, ',', '.') }} {{ __('reddington.silk') }}
Top Bidder: @if ($item->current_bid_char_id) {{ \App\Http\Model\SRO\Shard\Char::find($item->current_bid_char_id)->CharName16 }} @else NA @endif
@if ($item->current_bid_user_id !== $user->id && count($user->getTbUser->getShardUser))
@csrf
Make your own Bid
@endif
{{ $item->item_name }}
@endsection @push('theme::javascript') @endpush @push('theme::css') @endpush