Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ADVAPP-230]: Enhance naming within Product Administration navigation items #446

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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