@extends('theme::layouts.app-sro', ['alias' => 'Account']) @section('theme::title', __('seo.web-mall')) @section('theme::content')
@forelse($webmall as $item)
{{--
Add your rarity condition here @if ($item->rare) ★ RARE @endif
--}}
{!! $item->tooltip !!}
{{ __('webmall/webmall.itemname') }} {{ $item->item_name }}
{{ __('webmall/webmall.gender') }} {{ $item->gender == 0 ? 'Female' : ($item->gender == 1 ? 'Male' : 'Not Specified') }}
{{ __('webmall/webmall.silkprice') }} {{ $item->silk_price }} Silk
{{ __('webmall/webmall.itemquantity') }} {{ $item->item_quantity }}
{{ __('webmall/webmall.itemplus') }} {{ $item->item_plus }}
@empty
{{ __('webmall/webmall.empty') }}
@endforelse
@endsection @push('theme::css') @endpush @push('theme::javascript') @endpush