@extends('layouts.master') @section('title',trans('wallets')) @section('header') @endsection @section('main')

{{trans('wallets')}}

@foreach($wallets as $wallet) @endforeach
{{trans('id')}} {{trans('user')}} {{trans('address')}} {{trans('created at')}}
#{{$wallet->id}} #{{optional($wallet->user)->email}} {{ucfirst($wallet->address_base_58)}} {{$wallet->created_at? $wallet->created_at->ago() : ''}}
@endsection @section('footer') @endsection