@extends('layouts.account') @section('breadcrumb') @endsection @section('content')

Accounts

@foreach ($accounts as $account) @endforeach
# Identifier Email Created Tags
{{ $account->id }} {{ $account->identifier }} {{ $account->email }} {{ $account->creation_time}} @if ($account->activated) Activated @else Unactivated @endif @if ($account->admin) Admin @endif
{{ $accounts->links() }} @endsection