mirror of
https://github.com/anonaddy/anonaddy
synced 2026-05-11 09:26:49 +02:00
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class DomainOptionController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return response()->json([
|
|
'data' => user()->domainOptions()
|
|
]);
|
|
}
|
|
}
|