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

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

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

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

@endif

Defaulted User Details

@foreach($userlist as $key=>$val) @endforeach
User Name Circle Code Round Number Blocked Suspended Date Of Blocked
{{$val->username}} {{$val->circle_code}} {{$val->round_no.'/'.$val->estimate_round}} @if($val->status == 3){{'False'}}@elseif($val->status == 4){{'True'}}@endif @if($val->defaulted_date){{date('d-m-Y', strtotime($val->defaulted_date))}}@endif
@endsection @section('scripts') @endsection