mirror of
https://github.com/anonaddy/anonaddy
synced 2026-05-09 16:41:57 +02:00
14 lines
308 B
PHP
14 lines
308 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class ShowAdditionalUsernameController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('usernames.index', [
|
|
'usernames' => user()->additionalUsernames()->with(['aliases', 'defaultRecipient'])->latest()->get()
|
|
]);
|
|
}
|
|
}
|