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

Self Wallet Transfer

{{--

Self Wallet Transfer

--}}
@csrf
    @if($errors->any()) {!! implode('', $errors->all('
  • :message
  • ')) !!} @endif
@if ($errors->has('from')) {{ $errors->first('from') }} @endif
@if ($errors->has('to')) {{ $errors->first('to') }} @endif
@if ($errors->has('amount')){{ $errors->first('amount') }}@endif
@php $i=1; @endphp @foreach($datas as $data) @php $i++; @endphp @endforeach
SN User From To Amount TDS Transfered Amount Date
{{ $i }} {{ $data->user->user_id ?? $data->user_id }} [{{ $data->user->name }}] {{ $data->from }} {{ $data->to }} {{ $data->amount }} {{ $data->tds }} {{ $data->amount-$data->tds }} {{ $data->created_at }}
@endsection