{{-- resources/views/admin/financial/wallets/index.blade.php --}} @extends('admin.layouts.app') @section('title', 'Wallets Management') @section('page-title', 'Savings Wallets') @section('content')
All Wallets Flagged USD KES
@if($wallets->count() > 0)
@foreach($wallets as $wallet) @endforeach
Wallet Owner Trip Goal Current Progress Currency Status Created Actions
{{ is_array($wallet->name) ? ($wallet->name['en'] ?? 'Wallet') : $wallet->name }}
@if($wallet->admin_flagged) Flagged @endif
@if($wallet->user) {{ $wallet->user->name }} @else No User @endif @if($wallet->trip) {{ Str::limit($wallet->trip->title, 20) }} @else No trip @endif {{ format_currency($wallet->target_amount, $wallet->currency) }} {{ format_currency($wallet->current_amount, $wallet->currency) }}
{{ $wallet->progress_percentage }}%
{{ $wallet->currency }} @if($wallet->admin_flagged) Flagged @else Active @endif {{ format_admin_date($wallet->created_at, 'M j, Y') }} @if($wallet->user) @else No actions available @endif
{{ $wallets->links() }}
@else

No wallets found

Try adjusting your search criteria.

@endif
@endsection @push('scripts') @endpush