ListProfitCenterSupplierSchedules::route('/'), 'create' => CreateProfitCenterSupplierSchedule::route('/create'), 'edit' => EditProfitCenterSupplierSchedule::route('/{record}/edit'), ]; } public static function getWidgets(): array { return [ \App\Filament\Widgets\DeliveryCalendarWidget::class, ]; } public static function getRecordRouteBindingEloquentQuery(): Builder { return parent::getRecordRouteBindingEloquentQuery() ->withoutGlobalScopes([ SoftDeletingScope::class, ]); } }