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

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

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

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

@endif

Circle Management Withdraw List

Circle Code : {{$circle_code}}

@if(!$withdrawn->isEmpty()) @foreach($withdrawn as $key=>$val) @endforeach @endif
Username Round Number Amount Payment Type Payment Date
{{$val->user['username'] }} {{$val->rounds['round_no']}} {{$val->amount}} @if($val->payment_mode == 2) Online @else Offline @endif {{date('d-m-Y H:i:s', strtotime($val->created_at))}}
@endsection @section('scripts') @endsection