@if(Session::has('password_changed'))
{{Session::get('password_changed')}}
@elseif(Session::has('ambassador_added'))
{{Session::get('ambassador_added')}}
@elseif(Session::has('kyc_approved'))
{{Session::get('kyc_approved')}}
@endif
User Lists
# |
IMAGE |
USERNAME |
FULLNAME |
REFERRAL ID |
EMAIL |
ACTION |
@foreach($users as $row)
{{$loop->index+1}} |
|
{{$row->user_name}}
@if($row->status == '0')
(Blocked)
@endif
|
{{$row->name}} |
{{$row->sponsors->user_name}} |
{{$row->email}} |
@if($row->status == '1')
@else
@endif
|
@include('admin.modals.user_viewmodal')
@include('admin.modals.passwordchangemodal')
@include('admin.modals.makeambassadormodal')
@if($row->status== '1')
@include('admin.modals.userrestrict')
@else
@include('admin.modals.userunrestrict')
@endif
@endforeach