logo, improved listing, some helpers, mail confirms table, confirmed flag, user title column..

This commit is contained in:
2018-07-22 15:43:17 +02:00
parent 9081b38425
commit a3ba68ea98
47 changed files with 1462 additions and 292 deletions
+45
View File
@@ -0,0 +1,45 @@
<?php
namespace App\Console\Commands;
use App\Models\User;
use Illuminate\Console\Command;
class ConfirmUser extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'user:confirm {user}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Confirm user\'s e-mail (for testing)';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$u = User::resolve($this->argument('user'));
$u->update('confirmed', true);
$this->info("User #$u->id with e-mail $u->email and handle @$u->name was confirmed.");
}
}