| 12345678910111213 |
- <?php
- return [
- 'layout' => 'layouts.master', // 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,
- ];
|