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