@extends('layouts.app') @section('title','Purchase Success') @section('content') @php $isSuccess = in_array($purchase->status, ['success','completed','approved']); $isFailed = in_array($purchase->status, ['failed','rejected','cancelled']); if ($isFailed) { $statusLabel = 'বাতিল/ব্যর্থ'; $statusColor = 'text-red-500'; } elseif ($isSuccess) { $statusLabel = 'সফল হয়েছে'; $statusColor = 'text-green-500'; } else { $statusLabel = 'অপেক্ষমান'; $statusColor = 'text-orange-500'; } $offerName = $purchase->offer->title ?? $purchase->offer->name ?? 'Offer'; $amount = (float) $purchase->price; @endphp
Offer Purchase
{{-- details box --}}