PHP code example of tonystore / livewire-permission-manager
1. Go to this page and download the library: Download tonystore/livewire-permission-manager library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tonystore / livewire-permission-manager example snippets
return [
/*
* Supported Theme: 'tailwind, bootstrap',
*/
'theme' => 'tailwind',
];
return [
'blade-template' => [
'type' => 'components', //Supported Type: 'components, directives'
'component' => 'AppLayout', //type: components
'directives' => [ //type: directives
'extends' => 'layouts.app',
'section-content' => 'content',
],
],
];
return [
'modals' => [
'role' => 'list'
],
];
'paginate' => [
'perPages' => [
10, 25, 50, 100, 200
]
]
return [
'tables' => [
'roles' => config('permission.table_names.roles', 'roles'),
'permissions' => config('permission.table_names.permissions', 'permissions'),
],
];
return [
'roles' => [
'excludes' => []
]
];
return [
'column_name' => [
'add_column' => false,
'description' => null,
],
];
return [
'route' => [
'middleware' => [
'web',
'auth'
],
'prefix' => 'admin',
'name' => 'permission.index',
'url' => '/roles/manager'
],
];
bash
php artisan vendor:publish --provider="Tonystore\LivewirePermission\LivewirePermissionProvider" --tag=config-permission
bash
php artisan vendor:publish --provider="Tonystore\LivewirePermission\LivewirePermissionProvider" --tag=views-permission
bash
php artisan vendor:publish --provider="Tonystore\LivewirePermission\LivewirePermissionProvider" --tag=migrations-permission
bash
php artisan vendor:publish --provider="Tonystore\LivewirePermission\LivewirePermissionProvider" --tag=langs-permission