@extends('admin.layout.master') @section('content')
@if(Session::has('success'))

{{ Session::get('success') }}

@endif @if(Session::has('errors'))

{{ Session::get('errors') }}

@endif

Payment Management List

@foreach($users as $key=>$val) @endforeach
# Circle Code NÂș Date Money Has
Been Transfered
Current Round/
Total Number Of Rounds
User To Recieve
The Money
IBAN Amount To Be
Transfered
Action Transfered By
{{$key+1}} {{$val->circle_code}} @if($val->transfered_date){{date('d-m-Y', strtotime($val->transfered_date))}}@else{{'NA'}}@endif @if($val->round_no == 0){{'Left Over'}}@else{{$val->round_no.'/'.$val->total_round}}@endif {{$val->username}}@if($val->document_validated == 0){{'_NonReg'}}@endif @if($val->round_no == 0){{'N/A'}}@else @if($val->iban){{$val->iban}}@else{{'Yet to be requested'}}@endif @endif {{$val->amount}} @if($val->status == 0) @if($val->document_validated == 1) @endif @else @endif {{$val->first_name.' '.$val->last_name}}
@endsection @section('scripts') @endsection