@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($circle_payment as $key=>$val) @endforeach
# Circle code User Round Number Transaction Id Status Amount Payment Mode Payment Reason Action
{{$key+1}} {{$val->circle_code}} @if(isset($val->user['username'])){{$val->user['username']}}@endif @if(isset($val->rounds['round_no'])){{$val->rounds['round_no']}}@endif {{$val->trn_id}} @if($val->trn_status == 1) Active @else Inactive @endif {{$val->amount}} @if($val->payment_mode == 1) Offline @else Online @endif @if($val->payment_type==1){{$val->payment_reason}}@else{{'Refund Payment'}}@endif @if($val->payment_mode==1 && $val->trn_status == 3 && $val->payment_type==1) @endif
@endsection @section('scripts') @endsection