@extends('front.layout.master') @push('css') @endpush @section('content')
{{--

@lang('front.account')

--}}

@lang('front.wallet')

wallet

@lang('front.total')

{{ $walletaccount ? number_format($walletaccount->price,3) : number_format(0,3) }} @lang('front.KD')

{{-- --}}

@lang('front.process')

@if($wallet->count() > 0) @foreach($wallet as $key => $value)

{{ trans('front.'.$value->type) .' ' . \Carbon\Carbon::parse($value->created_at)->diffForHumans() }}{{ $value->type == "increase" ? "+": "-" }}{{ number_format($value->price , 3) }} @lang('admin.KD')

@endforeach @else

@lang('front.sorry')

@endif
{{--

Payment t abc shop-$150

Credit From abc ltd+$300

Transfer From John Doe+$100

--}}
@endsection