Build & Deploy / build (push) Successful in 19s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\Integrations;
|
|
|
|
use App\Filament\Resources\Integrations\Pages\CreateIntegration;
|
|
use App\Filament\Resources\Integrations\Pages\EditIntegration;
|
|
use App\Filament\Resources\Integrations\Pages\ListIntegrations;
|
|
use App\Filament\Resources\Integrations\Schemas\IntegrationForm;
|
|
use App\Filament\Resources\Integrations\Tables\IntegrationsTable;
|
|
use BackedEnum;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Table;
|
|
use Technical\Integrations\Models\Integration;
|
|
use UnitEnum;
|
|
|
|
class IntegrationResource extends Resource
|
|
{
|
|
protected static ?string $model = Integration::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedArrowsRightLeft;
|
|
|
|
protected static string|UnitEnum|null $navigationGroup = 'Système';
|
|
|
|
protected static ?int $navigationSort = 1;
|
|
|
|
protected static ?string $modelLabel = 'intégration';
|
|
|
|
protected static ?string $pluralModelLabel = 'intégrations';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return IntegrationForm::configure($schema);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return IntegrationsTable::configure($table);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array<int, string>
|
|
*/
|
|
public static function getGloballySearchableAttributes(): array
|
|
{
|
|
return ['provider', 'external_user_id', 'user.name'];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListIntegrations::route('/'),
|
|
'create' => CreateIntegration::route('/create'),
|
|
'edit' => EditIntegration::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|