@extends('frontend.layouts.app') @section('content')
@include('frontend.partials.mobile.header') @include('frontend.partials.mobile.sidebar-menu')
Welcome, {{ Auth::user()->username }}
Saldo
IDR {{ number_format(Auth::user()->balance ?? 0, 0, ',', '.') }}
@forelse($bonus_active as $index => $b)
{{ $index + 1 }}. {{ $b->bonus_title }}
@empty
Belum ada bonus atau promo yang sedang aktif.
@endforelse
@include('frontend.partials.mobile.bottom-nav')
@include('frontend.partials.desktop.header')

Saldo

IDR {{ number_format(Auth::user()->balance ?? 0, 0, ',', '.') }}
{{-- KOLOM BARU --}} @forelse($bonus_active as $index => $b) {{-- TAMBAHAN PROGRESS BAR DESKTOP --}} @empty @endforelse
No Date Promotion Target TurnOver Bonus Amount Progress TOStatus
{{ $index + 1 }} {{ date('Y-m-d H:i', strtotime($b->created_at)) }} {{ $b->bonus_title }} IDR {{ number_format((float)$b->turn_over, 0, ',', '.') }} IDR {{ number_format((float)$b->bonus_amount, 0, ',', '.') }}
IDR {{ number_format((float)$b->current_to, 0, ',', '.') }}
{{ $b->percentage }}%
@if($b->status == 1) Selesai @else @if($b->percentage >= 100) {{-- Tombol Muncul Jika TO >= 100% --}} @else Sedang Berjalan @endif @endif
Belum ada bonus atau promo yang sedang aktif.
@include('frontend.partials.desktop.footer')
@endsection @push('scripts') @endpush