@extends('back.layouts.app') @push('title', 'Wallets') @section('content')
{{ __('Wallets') }}
@foreach ($wallets as $wallet) @endforeach
#ID {{ __('User') }} {{ __('Email') }} {{ __('Wallet') }} {{ __('Created') }} {{ __('Actions') }}
{{ $wallet->name }} {{ $user->email }} {{config('app.currency_symbol')}}{{ $user->wallet }} {{ $user->created_at->format('d-m-Y H:i') }}
#ID {{ __('Name') }} {{ __('Email') }} {{ __('Wallet') }} {{ __('Created') }} {{ __('Actions') }}
@endsection