@extends('backend.layouts.master') @section('content')
@include('backend.common-views.messages')
@if($route == 'user')

Users

@else

Admin Users

@endif
@php $i=0; @endphp @foreach ($users as $user) @endforeach
SR No Date Name Of Investor Email Phone No. Amount D.O.B PAN Subscription Start Date Subscription End Date OTP Status Action
{{++$i}} {{ date('d-m-Y',strtotime($user->updated_at)) }} {{ $user->name}} {{$user->email }} {{$user->phone_no }} {{ !empty($user->amount) ? $user->amount : '-' }} {{ !empty($user->dob) ? date("d-m-Y", strtotime($user->dob)) : '-'}} {{ !empty($user->pan) ? $user->pan : '-' }} {{!empty($user->subscription_start_date) ? date("d-m-Y", strtotime($user->subscription_start_date)) : "-" }} {{ !empty($user->subscription_end_date) ? date("d-m-Y", strtotime($user->subscription_end_date)) : "-" }} {{ !empty($user->otp) ? $user->otp : '-' }} @if(empty($user->s_id)) Signup @else @if($user->is_payment_received == 1) Portal access @elseif($user->is_email_verified == 1) OTP Verified @else Form Filled @endif @endif
@endsection @push('js') @endpush