@extends('layouts.app') @section('title','Con. Success') @section('content') @php $points = (int) $conversion->points; $amount = (float) $conversion->amount; $ratePoints = (int) ($conversion->rate_points ?? 0); $rateAmount = (float) ($conversion->rate_amount ?? 0); $created = optional($conversion->created_at)->format('d-m-Y'); $rateText = $ratePoints > 0 ? "{$ratePoints} পয়েন্ট = ৳" . number_format($rateAmount, 2) : '—'; @endphp
{{-- main white card --}}
{{-- green circle with check --}}
{{-- heading --}}

কনভার্সন সফল হয়েছে

Reward Conversion

{{-- details box --}}
{{-- points --}}
কনভার্ট পয়েন্টঃ {{ number_format($points) }} pts
{{-- amount --}}
অ্যামাউন্টঃ ৳{{ number_format($amount, 2) }}
{{-- rate --}}
রেটঃ {{ $rateText }}
{{-- date --}}
তারিখঃ {{ $created }}
{{-- bottom full-width green button --}} রিওয়ার্ড পেজে ফিরে যান
@endsection