@extends("cabinet.base") @section("title", "Кабинет") @section("content")
@php $cards = [ ['title' => 'Инвестировано', 'amount' => number_format($invested, 2, '.', ' ') . ' RUB', 'icon' => 'c1fe34224bc965348c032d4d4b8815e7308b8f98'], ['title' => 'Выплачено', 'amount' => number_format($withdrawn, 2, '.', ' ') . ' RUB', 'icon' => '22fa58d848332d8a0b497a690a75d510498cda6e'], ['title' => 'Баланс', 'amount' => number_format($balance, 2, '.', ' ') . ' RUB', 'icon' => 'fb5d2f4ab62061562e7eb6302ed7b66be21c6191'], ['title' => 'Рефералов', 'amount' => $referrals, 'icon' => '34b75af8fa837dd321fd7aed2ceed6178c9b7cb5'], ]; @endphp @foreach($cards as $card)

{{ $card['title'] }}

{{ $card['amount'] }}

@if($card['icon']) icon @else
@endif
@endforeach

Ваши данные

Login
Ваш логин:
{{ $user->name }}
Email
Ваш email:
{{ $user->email }}
Referrer
Вас пригласил:
{{ $referral->name ?? "Нет реферала" }}

Реферальная ссылка

{{ config("app.url") }}/auth/register?ref={{ $user->ref_code }}

@endsection