@extends('adminlte::page') @section('title', 'Diamond Log') @section('css') @stop @section('content_header') @stop @section('content') {{-- Top bar: Back + Member search --}}
Back to Members
Info Hero
{{-- Member profile --}}
{{-- Left: Avatar + Name --}}

{{ $member->member_name }}

#{{ $member->member_id }} · Server {{ $member->member_server }}
VIP {{ $member->member_vip_level ?? 0 }}
{{-- Right: Stats --}}
Diamonds
{{ number_format($member->member_diamond ?? 0) }}
Gold
{{ number_format($member->member_gold ?? 0) }}
Purchased
${{ number_format($diamond_buy_total->total_buy_money ?? 0, 2) }}
{{-- Promotion Packs --}}
Active Promotions @if(!empty($packStatus)) @foreach($packStatus as $packType => $success) @if($success) {{ $packType }} @endif @endforeach @endif
@foreach($activePacks as $pack) @php $packKeyMap = ['Stamina Pack'=>'FORCE_SHOW_STAMINA_PACK_TO_USER','Gold Pack'=>'FORCE_SHOW_GOLD_PACK_TO_USER','Hero Pack'=>'FORCE_SHOW_HERO_TO_USER','Ultimate Hero Pack'=>'FORCE_SHOW_7STAR_HERO_TO_USER']; $packKey = $packKeyMap[$pack['type']] ?? ''; $packColors = ['Stamina Pack'=>['#e67e22','#fdf2e9'],'Gold Pack'=>['#f1c40f','#fef9e7'],'Hero Pack'=>['#2980b9','#ebf5fb'],'Ultimate Hero Pack'=>['#8e44ad','#f4ecf7']]; $color = $packColors[$pack['type']] ?? ['#666','#f5f5f5']; @endphp
@if(in_array($pack['type'], ['Hero Pack', 'Ultimate Hero Pack']) && $pack['value']) @endif
{{ $pack['type'] }}
@if(in_array($pack['type'], ['Hero Pack', 'Ultimate Hero Pack']) && $pack['value'])
Hero #{{ $pack['value'] }}
@endif
@endforeach @if(empty($activePacks)) No active packs @endif
{{-- Promotion Timeline (inline) --}}
Promotion Timeline

Loading...

{{-- Add Pack Modal --}}
{{-- Diamond Log --}}

Diamond Log

{{-- Filter row --}}

{{-- Hidden elements for JS compatibility --}}
{{-- Buy Money by Date chart --}}

Buy Money by Date

Period: $0  ·  All time: ${{ number_format($diamond_buy_total->total_buy_money ?? 0, 2) }}
{{-- Diamond Buy table --}}

Diamond Buy

Buy Time Buy Number Buy Money Buy Package Actions
{{-- Edit Diamond Buy Modal --}} {{-- Diamond Use table --}}

Diamond Use

Use Time Use Number
@stop @section('js') @endsection