<?php

use MyAAC\Models\Account;

defined('MYAAC') or die('Direct access not allowed!');

$accounts = 0;

if ($db->hasColumn('accounts', 'created')) {
	$accounts = Account::orderByDesc('created')->limit(10)->get(['created', (USE_ACCOUNT_NAME ? 'name' : 'id')])->toArray();
}

$twig->display('created.html.twig', array(
	'accounts' => $accounts,
));