@extends('layouts.app') @section('content')
@php $i = 1; @endphp @foreach ($accounts as $account) @if (!empty($account->data()['email'])) @else @endif @if (!empty($account->data()['Workout_Type'])) @else @endif @if (array_key_exists('Subscription_Duration', $account->data())) @else @endif @if (array_key_exists('exercise_kit_needed', $account->data())) @else @endif @if (array_key_exists('status', $account->data())) @else @endif @endforeach
Mark # Username Email Workout Plan Yearly Plan? Subscription Tier Had Kit? Need a Kit Created On Status Action
@if(!empty($account->data()['marked_as_read']) && $account->data()['marked_as_read'] == 'true') @php $checked = 'checked=checked'; @endphp @else @php $checked = ''; @endphp @endif {{ $i++ }} {{ $account->id() }}{{ $account->data()['email'] }}--{{ $account->data()['Workout_Type'] }}-- @if(!empty($account->data()['had_yearly_plan']) && $account->data()['had_yearly_plan'] == 'true') @php $checked = 'checked=checked'; @endphp @else @php $checked = ''; @endphp @endif {{ $account->data()['Subscription_Duration'] }} -- @if(!empty($account->data()['had_kit']) && $account->data()['had_kit'] == 'true') @php $checked = 'checked=checked'; @endphp @else @php $checked = ''; @endphp @endif {{ $account->data()['exercise_kit_needed'] }} --{{ date('d M Y', strtotime($account->createTime())) }} @if ($account->data()['status'] == 0) Blocked @elseif($account->data()['status'] == 1) Active @endif -- @if (array_key_exists('status', $account->data())) @if ($account->data()['status'] == 0) @elseif($account->data()['status'] == 1) @endif @else @endif
Mark # Username Email Workout Plan Yearly Plan? Subscription Tier Had Kit? Need a Kit Created On Status Action
@endsection