@extends('layouts.user') @section('title') Sell Off Details @endsection @section('content') @php $walletType = $ownership->wallet_source ?? 'main'; $isIctp = $walletType === 'ictp'; $isGrant = $walletType === 'grant'; $walletLabel = match($walletType) { 'ictp' => 'ICTP Balance', 'grant' => 'Grant Funds', default => 'Main Wallet', }; @endphp

Sell on {{ ucfirst($market?->name) }} · {{ ucfirst($product?->name) }}

Sell Off Market Sell Off Details
Back To My Store
{{-- Gallery --}} {{-- Info --}}

{{ ucfirst($product->name) }}

{{-- Stars --}}
@php $r = floatval($product->rating); @endphp @for($i = 1; $i <= 5; $i++) @if($r >= $i) @elseif($r >= $i - 0.5) @else @endif @endfor {{ number_format($product->rating,1) }} rating
{{-- Value summary --}}
Value / Item ${{ number_format($ownership->value, 2) }}
Quantity {{ $ownership->quantity }}
Total Value ${{ number_format($ownership->value * $ownership->quantity, 2) }}
Source @if($isIctp) ICTP @elseif($isGrant) Grant @else Main @endif
{{-- Payout notice --}}
@if($isIctp) @elseif($isGrant) @else @endif Sale proceeds will be credited to your {{ $walletLabel }} - matching the wallet used to purchase this item.
{{-- Description --}}

Overview

{{ $product->description }}

@isset($sell) {{-- Already in sale --}}

Sale In Progress

You are currently running a sale on this product. Please wait for it to complete.

@else {{-- Sell form: 3-field NEXUS pricing --}}
@csrf {{-- Profit Margin --}}

Set your desired profit as a percentage of the product value. Maximum 10%.

%
@error('margin_percent') {{ $message }} @enderror

Asking price: $0.00

{{-- Recess --}}

The lowest you are willing to accept below your asking price. Maximum 10%.

@error('recess_percent') {{ $message }} @enderror

Minimum acceptable: $0.00

{{-- Excess --}}

The highest you are willing to accept above your asking price. Maximum 10%.

@error('excess_percent') {{ $message }} @enderror

Maximum acceptable: $0.00

{{-- Price Range Summary --}}
Asking Price $0.00
Acceptable Range $0.00$0.00
Total ({{ $ownership->quantity }} item(s)) $0.00$0.00

Your sell order will be evaluated within 24 hours. If the market price falls within your acceptable range, your sell goes through. The final price is determined by live market activity.

{{-- Safety net tip --}}
Products priced within the AI buyback margin (0.05% - 0.2%) are eligible for guaranteed sale regardless of market conditions.
@endisset
{{-- Bottom info --}}

Market Info

Market
{{ ucfirst($market->name) }}
Max Recommended Margin
{{ $market->fake_sell_margin }}%

Additional Information

Category {{ $product->category }}
Bid Market {{ $product->market?->name }}
Sell Payout @if($isIctp) ICTP Balance @elseif($isGrant) Grant Funds @else Main Wallet @endif
@endsection