@extends('layouts.admin') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')

@foreach ($users as $key => $value) @endforeach
ID Username Email Plan Type Plan Status Created Date Status Action
{{ $value->id }} {{ $value->username }} {{ $value->email }} @if ($value->plan_type == 'free') Free @else Paid @endif @if ($value->plan_status == 'active') Active @elseif($value->plan_status == 'inactive') Inactive @else Expired @endif {{ $value->created_at }}
status == 'active' ? 'checked' : '' }}>
ID Username Email Plan Type Plan Status Created Date Status Action
@endsection