user()->can('manage_attachments') || auth()->user()->can('admin'); } protected static ?string $model = Attachment::class; protected static ?string $navigationIcon = 'heroicon-o-paper-clip'; protected static ?string $navigationGroup = 'Ogólne'; protected static ?string $modelLabel = 'Załącznik'; protected static ?string $pluralModelLabel = 'Załączniki'; protected static ?int $navigationSort = 2; public static function form(Form $form): Form { return $form ->schema([ Grid::make() ->schema([ Card::make() ->schema([ FileUpload::make('file_path') ->disk('public') ->directory('attachments') ->label('Załącznik') ->required(), TextInput::make('file_name') ->label('Nazwa') ->required(), ]), Card::make() ->schema([ Select::make('articles') ->multiple() ->label('Przypięte artykuły') ->nullable() ->placeholder('Wybierz artykuły') ->searchable() ->preload() ->reactive() ->relationship('articles', 'title', fn ($query) => $query->whereIn('type', ['article', 'article-with-map'])), ]), Card::make() ->schema([ Select::make('articlesNews') ->multiple() ->label('Przypięte aktualności') ->nullable() ->placeholder('Wybierz aktualności') ->searchable() ->preload() ->reactive() ->relationship('articlesNews', 'title'), ]), Card::make() ->schema([ Select::make('jobOffers') ->multiple() ->label('Przypięte oferty pracy') ->nullable() ->placeholder('Wybierz oferty pracy') ->searchable() ->preload() ->reactive() ->relationship('jobOffers', 'title'), ]), ])->columnSpan(8), ]); } public static function table(Table $table): Table { return $table ->columns([ Tables\Columns\TextColumn::make('file_name')->label('Nazwa') ->limit(35) ->tooltip(function (Tables\Columns\TextColumn $column): ?string { $state = $column->getState(); if (strlen($state) <= 35) { return null; } return $state; }), Tables\Columns\TextColumn::make('file_path')->label('Załącznik'), ]) ->filters([ // ]) ->actions([ Tables\Actions\ViewAction::make(), Tables\Actions\EditAction::make(), Tables\Actions\DeleteAction::make(), ]) ->bulkActions([ Tables\Actions\BulkActionGroup::make([ Tables\Actions\DeleteBulkAction::make(), ]), ]); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => Pages\ListAttachments::route('/'), 'create' => Pages\CreateAttachment::route('/create'), 'view' => Pages\ViewAttachment::route('/{record}'), 'edit' => Pages\EditAttachment::route('/{record}/edit'), ]; } }