mirror of
https://github.com/anonaddy/anonaddy
synced 2026-04-25 17:15:29 +02:00
19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class ShowUsernameController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('usernames.index', [
|
|
'usernames' => user()
|
|
->usernames()
|
|
->with('defaultRecipient:id,email')
|
|
->withCount('aliases')
|
|
->latest()
|
|
->get(),
|
|
]);
|
|
}
|
|
}
|