Aplikasi Keuangan yang mengatur lalu lintas transaksi antara bank dan aplikasi internal Kampus
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.
 
 
 
 
 

31 lines
824 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\RoleDataTable;
class RoleController extends Controller
{
/**
* Display a listing of the resource.
*/
#[LayoutData(
header: 'domains/identity/seo.role.title',
breadcrumbs: [
'ui.menu.dashboard' => 'dashboard',
'domains/identity/seo.role.title' => '',
],
)]
#[Seo(
title: 'domains/identity/seo.role.title',
description: 'domains/identity/seo.role.description',
keywords: 'domains/identity/seo.role.keywords'
)]
public function __invoke(RoleDataTable $dataTable)
{
return $dataTable->render('pages.identity.roles.index');
}
}