@extends('backend.layouts.app') @section('title', 'PG Payment List') @section('page-title', 'PG Payment List') @section('page-breadcrumb', 'PG Payment List') @section('content')
PG Payment List
@foreach($fund_list as $user) @endforeach
Transaction Id Counslr Amount Status Payment Date
{{$user->rzp_id}} {{$user->user_id}} {{$user->amount}} @if($user->payment_status=='1') Success @endif @if($user->payment_status=='0') Pending @endif @if($user->payment_status=='2') Failed @endif {{date("F jS, Y [h:i A]",strtotime($user->modify_on))}}
@endsection @section('self_script') @endsection