@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) }}
Overview
{{ $product->description }}
Sale In Progress
You are currently running a sale on this product. Please wait for it to complete.
Market Info
Additional Information
| Category | {{ $product->category }} |
| Bid Market | {{ $product->market?->name }} |
| Sell Payout | @if($isIctp) ICTP Balance @elseif($isGrant) Grant Funds @else Main Wallet @endif |