You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
833 B
32 lines
833 B
<?php
|
|
|
|
namespace App\Http\Controllers\Web\Identity;
|
|
|
|
use App\Attributes\LayoutData;
|
|
use App\Attributes\Seo;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\DataTables\Identity\UserDataTable;
|
|
|
|
class UserController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
#[LayoutData(
|
|
header: 'domains/identity/seo.user.title',
|
|
breadcrumbs: [
|
|
'ui.menu.dashboard' => 'dashboard',
|
|
'domains/identity/seo.user.title' => '',
|
|
],
|
|
)]
|
|
#[Seo(
|
|
title: 'domains/identity/seo.user.title',
|
|
description: 'domains/identity/seo.user.description',
|
|
keywords: 'domains/identity/seo.user.keywords'
|
|
)]
|
|
public function __invoke(UserDataTable $userDataTable)
|
|
{
|
|
|
|
return $userDataTable->render('pages.identity.users.index');
|
|
}
|
|
}
|
|
|