Skip to content

Commit

Permalink
Merge pull request #446 from canyongbs/feature/advapp-230-enhance-nam…
Browse files Browse the repository at this point in the history
…ing-within-product-administration-navigation-items

[ADVAPP-230]: Enhance naming within Product Administration navigation items
  • Loading branch information
Orrison authored Jan 16, 2024
2 parents 4c1f902 + 3e69a1b commit 15915fd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ class ApplicationSubmissionStateResource extends Resource

protected static ?string $navigationIcon = 'heroicon-o-rectangle-stack';

protected static ?string $navigationLabel = 'Application States';
protected static ?string $navigationLabel = 'Submission States';

protected static ?int $navigationSort = 1;

protected static ?string $modelLabel = 'submission state';

protected static ?string $cluster = OnlineAdmissions::class;

public static function getPages(): array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
namespace AdvisingApp\Prospect\Filament\Resources;

use Filament\Resources\Resource;
use App\Filament\Clusters\RecruitmentCrm;
use App\Filament\Clusters\ProspectManagement;
use AdvisingApp\Prospect\Models\ProspectSource;
use AdvisingApp\Prospect\Filament\Resources\ProspectSourceResource\Pages;

Expand All @@ -51,7 +51,7 @@ class ProspectSourceResource extends Resource

protected static ?int $navigationSort = 2;

protected static ?string $cluster = RecruitmentCrm::class;
protected static ?string $cluster = ProspectManagement::class;

public static function getRelations(): array
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

use Filament\Forms\Form;
use Filament\Resources\Resource;
use App\Filament\Clusters\RecruitmentCrm;
use App\Filament\Clusters\ProspectManagement;
use AdvisingApp\Prospect\Models\ProspectStatus;
use AdvisingApp\Prospect\Filament\Resources\ProspectStatusResource\Pages;

Expand All @@ -52,7 +52,7 @@ class ProspectStatusResource extends Resource

protected static ?int $navigationSort = 1;

protected static ?string $cluster = RecruitmentCrm::class;
protected static ?string $cluster = ProspectManagement::class;

public static function form(Form $form): Form
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

use Filament\Clusters\Cluster;

class RecruitmentCrm extends Cluster
class ProspectManagement extends Cluster
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';

Expand Down

0 comments on commit 15915fd

Please sign in to comment.