@extends('layouts.master') @section('title',trans('withdraws list')) @section('header') @endsection @section('main')

{{trans('withdraws list')}}

@foreach($withdraws as $withdraw) @endforeach
{{trans('id')}} {{trans('to')}} {{trans('to')}} {{trans('txid')}} {{trans('status')}} {{trans('created at')}}
#{{$withdraw->id}} {{Str::limit($withdraw->to,20)}} {{$withdraw->amount}} USDT {{Str::limit($withdraw->txid,20)}} {{strtoupper($withdraw->status)}} {{$withdraw->created_at}}
@endsection @section('footer') @endsection