@extends(auth()->check() ? 'user.layout' : 'user.public.layout') @section('title','অর্ডার করুন') @section('content') @php $isReseller = auth()->check() && (int)(auth()->user()->is_active ?? 0) === 1; $productImage = $product->images->first()?->image_url ?? asset('images/default-product.png'); @endphp
@csrf
{{ $product->name }}
{{ number_format($display['final'],0) }}
{{ $product->name }}
পরিমাণ (স্টক: {{ $product->stock }})
@if($product->has_size && is_array($product->sizes) && count($product->sizes))
সাইজ নির্বাচন করুন
@foreach($product->sizes as $size) @endforeach
@endif @if($product->has_color && is_array($product->colors) && count($product->colors))
কালার নির্বাচন করুন
@foreach($product->colors as $color) @endforeach
@endif @if($isReseller)
বিক্রয় মূল্য প্রতি আইটেম
আপনার আয় প্রতি আইটেম
0
সর্বনিম্ন ৳{{ number_format($display['final'],0) }} — সর্বোচ্চ ৳{{ number_format($product->reseller_max_price,0) }}
@endif
প্রোডাক্ট মূল্য ৳{{ number_format($display['final'],0) }} × 1
0
@if($isReseller)
আপনার আয় 0 × 1
0
@endif
সর্বমোট মূল্য 0 × 1
0
ডেলিভারি চার্জ পরের ধাপে জেলা অনুযায়ী যোগ হবে।
রেফারেন্স ছবি, চাইলে দিন
সর্বোচ্চ ৩টি ছবি দিতে পারবেন।
@endsection