PHP code example of cwsps154 / users-roles-permissions
1. Go to this page and download the library: Download cwsps154/users-roles-permissions 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/ */
cwsps154 / users-roles-permissions example snippets
use CWSPS154\UsersRolesPermissions\UsersRolesPermissionsPlugin;
$panel->databaseNotifications() //need to see the export files for the permission
->databaseTransactions() //optional
->plugins([UsersRolesPermissionsPlugin::make()]); //
use CWSPS154\UsersRolesPermissions\UsersRolesPermissionsPlugin;
$panel->plugins([UsersRolesPermissionsPlugin::make()->setUserResource(UserResource::class)]);
use HasRole;
implements HasMedia, HasAvatar, FilamentUser
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'mobile',
'password',
'role_id',
'last_seen',
'is_active'
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'password' => 'hashed',
'last_seen' => 'datetime',
'is_active' => 'boolean',
];
}
'phone' => 'The :attribute field must be a valid number.',