{{-- resources/views/admin/financial/wallets/index.blade.php --}} @extends('admin.layouts.app') @section('title', 'Wallets Management') @section('page-title', 'Savings Wallets') @section('content')
| 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->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 |
Try adjusting your search criteria.