@extends("layouts.admin.app") @section("page-nav-title")

{{__(" Wallets")}}

{{__("create and view all Wallets")}}

@endsection @section("content")
@if(isPermissionsAllowed("create-wallet")) @endif
@foreach($transaction_wallet as $wallets) @if($wallets->in_out == 1) @elseif($wallets->in_out == -1) @endif @endforeach
#{{__("ID")}} #{{__("type_wallet")}} {{__("Movement")}} {{__("value")}} {{__("User")}} {{__("created_at")}}
{{$wallets->id}} @if($wallets->type_wallet_id ==2 || $wallets->type_wallet_id ==5) {{$wallets->typeWallet->name . " " . $wallets->type_id}} @else {{$wallets->typeWallet->name}} @endif {{__('deposit')}}{{__('pull')}}{{$wallets->value}} {{$wallets->user->full_name}} {{date('d/m/Y h:i A', strtotime($wallets->created_at))}}
@endsection @section("scripts") @endsection