@extends('theme::layouts.app', ['alias' => 'AuctionHouse']) @section('theme::title', __('reddington.seo.auctionshouse.showitem', ['name' => $item->item_name])) @section('theme::sidebar') @include('theme::frontend.account.auctionsidebar', ['filter_type' => $filter]) @endsection @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 === Auth::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 !== Auth::user()->id && count(Auth::user()->getTbUser->getShardUser))
@csrf
Make your own Bid
@error('char') {{ $message }} @enderror
@endif
{{ $item->item_name }}
@endsection @push('theme::javascript') @endpush @push('theme::css') @endpush