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.

14 lines
674 B

<?php
return [
'layout' => 'layouts.app', // You must set it. Example: 'layout' => 'adminlte::page'
'userModelClass' => App\Models\User::class, // You can change it
'adminUserId' => 1, // You must set it. This is the initial user id, which must be an administrator, at least at the first stage.
'routesMainPermission' => Itstructure\LaRbac\Models\Permission::ADMINISTRATE_PERMISSION, // You can change it
'routesAuthMiddlewares' => ['auth'], // You can change it
'memberNameAttributeKey' => function ($row) { // You can change it. And can simply set 'memberNameAttributeKey' => 'name'
return $row->name;
},
'rowsPerPage' => 10,
];