@extends('layouts.user') @section('title', __('user.transaction_detail_title')) @section('content')
{{ __('user.completed') }}
#{{ $withdraw->id }}
{{ number_format($withdraw->amount) }} 💎
{{ $withdraw->character_name ?? 'N/A' }}
{{ \Carbon\Carbon::parse($withdraw->created_at)->format('d/m/Y H:i:s') }}
Đã chuyển vào game
{{ $withdraw->transaction_id ?? 'N/A' }}
@if($withdraw->description)
{{ $withdraw->description }}
@endif

Thông tin số dư

{{ number_format($withdraw->coin_balance_before ?? 0) }} 💎
-{{ number_format($withdraw->amount) }} 💎
{{ number_format($withdraw->coin_balance_after ?? 0) }} 💎
@endsection