@extends('layouts.layout') @section('title', 'Add Fund History') @section('content')

@if (session()->has('message'))
{!! session()->get('message') !!}
@endif
@php $i=0;@endphp @foreach($users as $p) @php $i++;@endphp @endforeach
ID# Register Date Name Username Date of Birth Gender Email Balance Action
{{ $i }} {{ date('d-F-Y',strtotime($p->created_at)) }} {{ $p->name }} {{ $p->username }} {{ $p->dob }} @if($p->gender == 1) Male @else Female @endif {{ $p->email }} {{ $p->balance }} - USD @if($p->status == 0) @else @endif
{!! $users->links() !!}
@endsection @section('scripts') @endsection