Skip to content

eightygrit/filament-sanctum

 
 

Repository files navigation

Filament Sanctum

Create Token Token Created

Installation

You can install the package via composer, but you need to ensure you can install it via GitHub.

In composer.json add a new property for repositories:

{
    // ...
    "require": {
        "php": "^8.2",
        "filament/filament": "^3.2",
        "laravel/framework": "^11.0",
        // ...
        "eightygrit/filament-sanctum": "^2.0"
    },
    // ...
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/eightygrit/filament-sanctum.git"
        }
    ]
}

Save the composer.json file. Then run composer update.

Configuration

Publish the vendor config file by running:

php artisan vendor:publish --tag=filament-sanctum-config

Update the config file as you see fit:

return [

    'abilities' => [
        'users:read' => 'Read User',
        'users:create' => 'Create User',
        'users:update' => 'Update User',
        'users:delete' => 'Delete User',
        'blog:read' => 'Read Blog',
        'blog:create' => 'Create Blog',
        'blog:update' => 'Update Blog',
        'blog:delete' => 'Delete Blog',
    ],
    'columns' => 4,
    'navigation_menu' => true,
    'user_menu' => false,
    'label' => 'Sanctum',
    'slug' => 'sanctum',

];

Translations

php artisan vendor:publish --tag=filament-sanctum-translations

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Packages

No packages published

Languages

  • PHP 82.2%
  • Blade 14.3%
  • JavaScript 2.8%
  • CSS 0.7%