@extends('back.layouts.app') @push('title', __('Users')) @push('css') @endpush @section('content')
{{ __('Users') }}
@foreach($users as $user) @endforeach
#ID {{ __('Name') }} {{ __('Email') }} {{ __('Wallet') }} {{ __('Created At') }} {{ __('Action') }}
{{ $user->id }} {{ $user->name }} {{ $user->email }} {{config('app.currency_symbol')}}{{ $user->wallet }} {{ $user->created_at->format('Y-d-m H:i') }}
{{ $users->links() }}
@csrf
@endsection @push('js') @endpush