@include('partials.topbar',['title'=>'Platform Accounts'])
Registered Accounts
@forelse($accounts as $account)@empty@endforelse
NameEmailPhoneStatusRegistration DateExpiry DateDisableEditDelete
{{ $account->name }}{{ $account->email }}{{ $account->phone }}{{ ucfirst($account->status) }}{{ optional($account->created_at)->format('d M Y') }}{{ $account->subscription_expires_at? $account->subscription_expires_at->format('d M Y') : optional($account->created_at)->addYear()->format('d M Y') }}@if($account->status==='active')
@csrf
@else
@csrf
@endif
Edit
@csrf @method('DELETE')
No accounts found.
{{ $accounts->links() }}