@extends('layouts.admin', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
@foreach ($users as $user) @endforeach
{{ __('S.No') }} {{ __('Full Name') }} {{ __('Email') }} {{ __('Current Plan') }} {{ __('Joined') }} {{ __('Status') }} {{ __('Actions') }}
{{ $loop->index + 1 }} {{ $user->name }} {{ $user->email }} @if ($plan_data == null) {{ __('No Plan') }} @else {{ __($plan_data['plan_name']) }} @if ($plan_data['plan_price'] == '0') ({{ __('Free') }}) @else ({{ $config[1]->config_value }} {{ $plan_data['plan_price'] }}) @endif @endif {{ date('d-m-Y h:m A', strtotime($user->created_at)) }} @if ($user->status == 0) {{ __('Inactive') }} @else {{ __('Active') }} @endif
@include('admin.includes.footer')
@endsection