@extends('home.layouts.index') @section('title') کیف پول @endsection @section('script') @endsection @section('style') @endsection @section('content')
@include('home.sections.profile_sidebar')
@if($user->first_name==null or $user->national_code==null) @include('home.users_profile.complete_info') @else

موجودی کیف پول: {{ number_format($wallet->amount) }} تومان

@csrf
@foreach($PaymentMethods as $item) @if($item->id != 7) @if(file_exists(public_path(env('LOGO_UPLOAD_PATH').$item->image)) and !is_dir(public_path(env('LOGO_UPLOAD_PATH').$item->image))) @else @endif @endif @endforeach

@foreach ($wallet_history as $key => $item) @endforeach
# مبلغ (تومان) تغییرات (تومان) نوع تاریخ
{{ $wallet_history->firstItem() + $key }} {{ number_format($item->previous_amount) }} {{ number_format($item->amount) }} @if($item->increase_type==1) @else @endif {{ $item->Type->description }} {{ verta($item->created_at)->format('Y-m-d H:i') }}
{{ $wallet_history->render() }}
@endif
@endsection