@include('site.controllers.upper-header') @include('site.controllers.header')

@lang('site.profile')

@lang('site.thisAccountCreated') {{\Carbon\Carbon::parse($user->created_at)->diffForHumans()}}

{{$user->username}}

{{$user->last_online ? \Carbon\Carbon::parse($user->last_online)->diffForHumans() : trans('site.online')}}



@lang('site.myAuctions')

@foreach($waiting_auctions as $row)
@include('site.controllers.auction')
@endforeach @if(count($waiting_auctions) > 0) @else

@lang('site.noItem')

@endif
@foreach($next_auctions as $row)
@include('site.controllers.auction')
@endforeach @if(count($next_auctions) > 0) @else

@lang('site.noItem')

@endif
@foreach($now_auctions as $row)
@include('site.controllers.auction')
@endforeach @if(count($now_auctions) > 0) @else

@lang('site.noItem')

@endif
@foreach($last_auctions as $row)
@include('site.controllers.auction')
@endforeach @if(count($last_auctions) > 0) @else

@lang('site.noItem')

@endif

@lang('site.myAds')

@include('site.controllers.product') @if(count($rows) > 0) @else

@lang('site.noItem')

@endif
@include('site.controllers.footer')