@extends('adminlayout.admin') @section('content')

Wallet Transactions


Search
@csrf
@if(isset($from)) @else @endif @if ($errors->has('search')){{ $errors->first('search') }}@endif
@if(isset($to)) @else @endif @if ($errors->has('search')){{ $errors->first('search') }}@endif
@if ($errors->has('search')){{ $errors->first('search') }}@endif

@php $i=1; @endphp @foreach($datas as $data) @endforeach
SN User Amount Trans Type Remain Wallet Remark By User ID Service Date
{{ $i++ }} {{ $data->user_details->name ?? $data->user_id }}
{{ $data->user_details->user_id ?? '' }}
{{ $data->amount }} {{ $data->trans_type }} {{ $data->remain_wallet }} {{ $data->remark }} {{ $data->by_user->name ?? $data->by_id }}
{{ $data->by_user->user_id ?? '' }}
{{ $data->service->name ?? $data->service_id }} {{ date_format($data->created_at, 'Y-m-d h:i:s A') }}
@endsection