@extends("cabinet.base") @section("title", "Депозиты") @section("content")

История депозитов

Дата
Сумма
Дней
Прибыль
Статус
@forelse($deposits as $deposit)
{{ \Carbon\Carbon::parse($deposit->created_at)->format('d.m.Y') }}
{{ number_format($deposit->amount, 2, '.', ' ') }} {{ $deposit->currency }}
{{ $deposit->profit_days_count }}/{{ $deposit->period_days }}
{{ number_format($deposit->profit, 2, '.', ' ') }} RUB
{{ $deposit->is_active ? 'Активно' : 'Неактивно' }}
@empty
Депозиты не найдены.
@endforelse
@endsection