components([ // ]); } public static function table(Table $table): Table { return $table ->columns([ TextColumn::make('user_name') ->label(__('Username')) ->searchable(), TextColumn::make('site.domain') ->label(__('Site')) ->searchable(), TextColumn::make('created_at') ->label(__('Date')) ->dateTime() ->sortable(), ]) ->filters([ // ]) ->recordActions([ // ]) ->toolbarActions([ // ]) ->defaultSort('created_at', 'desc'); } public static function getRelations(): array { return [ // ]; } public static function getPages(): array { return [ 'index' => ListSiteSystemUsers::route('/'), ]; } }