Page MenuHomePhorge

ListCommand.php
No OneTemporary

Size
758 B
Referenced Files
None
Subscribers
None

ListCommand.php

<?php
namespace App\Console\Commands\AuthAttempt;
use App\Console\Command;
use App\AuthAttempt;
class ListCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'authattempt:list';
/**
* The console command description.
*
* @var string
*/
protected $description = 'List auth attempts';
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$authAttempts = AuthAttempt::orderBy('last_seen');
$authAttempts->each(
function ($authAttempt) {
$this->info($authAttempt->toJson(JSON_PRETTY_PRINT));
}
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Fri, Nov 21, 11:53 AM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
387498
Default Alt Text
ListCommand.php (758 B)

Event Timeline