Update navigation groups for various resources: change ManageCtaSettings to 'Home', CommentResource and NewsResource to 'News', and add 'Brands' for BrandResource. Update navigation icon for SolutionResource to 'heroicon-o-light-bulb'.

This commit is contained in:
2025-07-28 20:08:37 +05:00
parent 7fdb99cc79
commit b23f537086
5 changed files with 6 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ use Filament\Forms\Components\FileUpload;
class ManageCtaSettings extends SettingsPage
{
protected static ?string $navigationGroup = 'CMS';
protected static ?string $navigationGroup = 'Home';
protected static ?string $navigationIcon = 'heroicon-o-megaphone';

View File

@@ -21,6 +21,8 @@ class BrandResource extends Resource
protected static ?string $navigationIcon = 'heroicon-o-tag';
protected static ?string $navigationGroup = 'Brands';
public static function form(Form $form): Form
{
return $form

View File

@@ -22,7 +22,7 @@ class CommentResource extends Resource
protected static ?string $navigationIcon = 'heroicon-o-chat-bubble-bottom-center-text';
protected static ?string $navigationGroup = 'CMS';
protected static ?string $navigationGroup = 'News';
public static function form(Form $form): Form
{

View File

@@ -23,7 +23,7 @@ class NewsResource extends Resource
protected static ?string $navigationIcon = 'heroicon-o-newspaper';
protected static ?string $navigationGroup = 'CMS';
protected static ?string $navigationGroup = 'News';
public static function form(Form $form): Form
{

View File

@@ -17,7 +17,7 @@ class SolutionResource extends Resource
{
protected static ?string $model = Solution::class;
protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';
protected static ?string $navigationIcon = 'heroicon-o-light-bulb';
protected static ?string $navigationGroup = 'Solutions';