logisticinfotech / rightsmanagement-module
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 25
Type:laravel-module
Requires
- dev-origin/master
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/qs-and-express-6.11.0
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/loader-utils-and-webpack-cli-and-resolve-url-loader-1.4.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/composer/illuminate/database-6.20.26
- dev-dependabot/npm_and_yarn/y18n-4.0.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/acorn-6.4.1
- dev-dependabot/composer/symfony/http-foundation-4.4.1
- dev-dependabot/composer/symfony/mime-4.4.1
- dev-master
This package is auto-updated.
Last update: 2025-03-05 03:24:18 UTC
README
php artisan module:update php artisan migrate
admins
routes prefix required, works best with inspania
theme, minimum bootstrap 4
required
Config
For Congifuration you can fire
php artisan vendor:publish
and select appropriate option which will generate file namedconfig/rightsmanagement.php
with variables- You can generate file manually at
config/rightsmanagement.php
here are the list of
<?php
return [
'name' => 'RightsManagement',
'routePrefix' => 'admins', // no trailing slash required
'authGuard' => 'admin',
'layoutIncludes' => 'admin.include' // no trailing fullstop required
];
In Your Admin Model
please add use HasRoles;
to your model
use Spatie\Permission\Traits\HasRoles;
class Admin extends Authenticatable
{
use HasRoles;
For Dev of this package
for versioning
replace X
with next version
git tag vX.X.X
git push origin vX.X.X