88 lines
2.8 KiB
PHP
88 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Resources\SiteResource\Pages;
|
|
use App\Filament\Resources\SiteResource\RelationManagers;
|
|
use App\Models\Site;
|
|
use Filament\Forms;
|
|
use Filament\Resources\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Resources\Table;
|
|
use Filament\Tables;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
|
|
class SiteResource extends Resource
|
|
{
|
|
protected static ?string $model = Site::class;
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-globe';
|
|
|
|
protected static ?string $navigationGroup = 'Site management';
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\TextInput::make('server_id'),
|
|
Forms\Components\TextInput::make('status')
|
|
->maxLength(255),
|
|
Forms\Components\TextInput::make('ploi_id'),
|
|
Forms\Components\TextInput::make('domain')
|
|
->maxLength(255),
|
|
Forms\Components\TextInput::make('project')
|
|
->maxLength(255),
|
|
Forms\Components\TextInput::make('php_version')
|
|
->maxLength(255),
|
|
Forms\Components\TextInput::make('aliases'),
|
|
Forms\Components\Textarea::make('dns_id')
|
|
->maxLength(65535),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('server_id'),
|
|
Tables\Columns\TextColumn::make('status'),
|
|
Tables\Columns\TextColumn::make('ploi_id'),
|
|
Tables\Columns\TextColumn::make('domain'),
|
|
Tables\Columns\TextColumn::make('project'),
|
|
Tables\Columns\TextColumn::make('php_version'),
|
|
Tables\Columns\TextColumn::make('aliases'),
|
|
Tables\Columns\TextColumn::make('dns_id'),
|
|
Tables\Columns\TextColumn::make('created_at')
|
|
->dateTime(),
|
|
Tables\Columns\TextColumn::make('updated_at')
|
|
->dateTime(),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListSites::route('/'),
|
|
'create' => Pages\CreateSite::route('/create'),
|
|
'edit' => Pages\EditSite::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|