@extends('_layout.main') @section('content') @include('components.page-indicator', [ 'page' => 'Dasbor Admin', 'subpage' => 'Panel Kontrol', 'path' => ['Beranda', 'Dasbor Admin'], ])

Pengguna Baru

total Pengguna Baru

{{ count(App\Models\User::get()) }} Pengguna

Detail

Total Pengguna

total Pengguna

{{ count(App\Models\User::get()) }} Pengguna

Detail

Pendapatan

total Pendapatan

@money(App\Models\Profile::sum('balance'))

Detail

Permintaan Saldo

@foreach ($balances as $balance) @endforeach
Tanggal No Pengguna Bukti Pembayaran Pembayaran Kepada Jumlah Catatan Status Terbayar
{{ $balance->created_at }} {{ $balance->code }} {{ $balance->user->username }} @if (!$balance->proof)

404

@else @endif
{{ $balance->paymentTo }} @money($balance->amount) {{ $balance->note }} @if ($balance->isPaid == 1) @else @endif @if ($balance->status == 'active')
@else
@csrf @method('PUT')
@endif

Permintaan Penarikan

@foreach ($withdraws as $withdraw) @endforeach
Tanggal Jumlah Penarikan ke Nama No Rekening Catatan Status
{{ $withdraw->created_at }} @money($withdraw->amount) {{ $withdraw->bank->bank }} {{ $withdraw->bank->name }} {{ $withdraw->bank->noRekening }} {{ $withdraw->note }}
@csrf @method('PUT')
@csrf @method('PUT')

Permintaan Testimoni

@if (count($pendingTestimonials) != 0) @foreach ($pendingTestimonials as $pendingTestimonial) @endforeach @endif
Foto Judul Deskripsi Pengguna
{{ $pendingTestimonial->title }} {{ $pendingTestimonial->description }} {{ $pendingTestimonial->user->username }}
@csrf @method('PUT')
@csrf @method('PUT')
@endsection @section('javascript') @endsection