@extends('admin.layouts.admin_app', ['header' => true, 'nav' => true, 'demo' => true]) @section('content') @section('title') User List @endsection @section('users', 'active') @section('trash_list', 'active')
{{ __('SL.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 | ||
{{ __('No Users Found.') }} |