Add role-based access control to management pages: implement canView method in ManageCtaSettings, ManagePortfolio, ManageSolutions, and ManageSuccess classes to restrict access to ADMIN and MANAGER roles, enhancing security and user experience.

This commit is contained in:
2025-07-29 15:45:22 +05:00
parent a1826ae53c
commit fe42967a74
6 changed files with 31 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
namespace App\Filament\Pages;
use App\Settings\SuccessSettings;
use App\Models\UserRole;
use Filament\Forms\Components\FileUpload;
use Filament\Forms\Components\Grid;
use Filament\Forms\Components\Repeater;
@@ -113,4 +114,9 @@ class ManageSuccess extends SettingsPage
{
return 'Manage the success section content, including text, button, and skill bars.';
}
public static function canView(): bool
{
return auth()->user()->role === UserRole::ADMIN || auth()->user()->role === UserRole::MANAGER;
}
}